/* ===================== DESIGN TOKENS ===================== */
:root {
  /* Colors - Light professional theme */
  --color-bg: #f4f6f9;
  --color-surface: #ffffff;
  --color-border: #e2e5ea;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eaf1ff;

  --color-text-primary: #1f2937;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;

  --color-success: #16a34a;
  --color-success-bg: #e9f9ee;
  --color-error: #dc2626;
  --color-error-bg: #fdecec;
  --color-warning: #d97706;
  --color-warning-bg: #fef4e6;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);

  /* Layout */
  --sidebar-width: 220px;
  --header-height: 60px;
  --footer-height: 48px;

  /* Typography */
  --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-size-sm: 13px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 20px;
}
