:root {
  --color-bg: #f7f8fa;
  --color-surface: #ffffff;
  --color-border: #e2e5ea;
  --color-text: #1a1d23;
  --color-text-muted: #5b6270;
  --color-accent: #1f5f8b;
  --color-accent-hover: #174a6d;
  --color-success: #1e7a4c;
  --color-warning: #a15c00;
  --color-danger: #b3261e;

  --font-sans: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;

  --radius: 8px;
  --shadow-card: 0 1px 3px rgba(16, 24, 40, 0.08), 0 1px 2px rgba(16, 24, 40, 0.06);

  --sidebar-width: 240px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #14161a;
    --color-surface: #1c1f26;
    --color-border: #2c303a;
    --color-text: #e8eaed;
    --color-text-muted: #9aa1ac;
    --color-accent: #5b9bd5;
    --color-accent-hover: #7bb0e0;
    --color-success: #4caf7d;
    --color-warning: #d99a3d;
    --color-danger: #e5837c;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  }
}
