:root {
  /* Primary */
  --primary: #1d4ed8;
  --primary-hover: #1e40af;
  --primary-light: #dbeafe;

  /* Accents */
  --accent-green: #16a34a;
  --accent-green-light: #dcfce7;
  --accent-red: #dc2626;
  --accent-red-light: #fee2e2;
  --accent-yellow: #fbbf24;
  --accent-yellow-light: #fef3c7;
  --accent-blue: #3b82f6;
  --accent-blue-light: #dbeafe;
  --accent-purple: #8b5cf6;
  --accent-purple-light: #ede9fe;
  --accent-orange: #f97316;
  --accent-orange-light: #fff7ed;
  --accent-teal: #0d9488;
  --accent-teal-light: #ccfbf1;

  /* Backgrounds */
  --bg: #f5f5f5;
  --bg-cream: #fffef9;
  --surface: #ffffff;

  /* Borders */
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --border-dark: #d1d5db;

  /* Text */
  --text: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --link-color: #2563eb;

  /* Shadows */
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);

  /* Radius */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

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

  /* Typography */
  --font-xs: 11px;
  --font-sm: 12px;
  --font-base: 14px;
  --font-md: 15px;
  --font-lg: 16px;
  --font-xl: 18px;
  --font-2xl: 22px;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 900;
  --z-modal: 1000;
  --z-toast: 9999;

  /* Transitions */
  --transition-fast: 0.1s ease;
  --transition-base: 0.15s ease;

  /* Layout */
  --header-height: 56px;
  --content-max-width: 1600px;
}
