/* Base Styles */
:root {
  --primary-color: rgb(43, 82, 244);
  --primary-light: #4096ff;
  --primary-dark: #0958d9;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-hint: #999999;
  --bg-color: #ffffff;
  --border-color: #e5e5e5;
  --input-bg: #f5f5f5;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 24px;
  --border-radius-pill: 9999px;
  
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--bg-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  max-width: 500px;
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px var(--shadow-color);
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}

.content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--spacing-md);
}
