:root {
    /* Colors — Primary (WCAG AA compliant - 5.9:1 contrast with white) */
    --primary: #047857;
    --primary-hover: #065f46;
    --primary-light: #d1fae5;
    
    /* Colors — Success/CTA (Green) - WCAG AA compliant */
    --success: #047857;
    --success-hover: #065f46;
    --success-light: rgba(4, 120, 87, 0.1);
    --success-dark: #065f46;
    
    /* Colors — Warning (Yellow/Orange) */
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.1);
    --warning-dark: #d97706;
    
    /* Colors — Danger/Delete (Red) */
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --danger-light: rgba(239, 68, 68, 0.1);

    /* Colors — Accents (Muted Professional) - WCAG AA compliant */
    --accent-green: #047857;
    --accent-green-light: #d1fae5;
    --accent-red: #ef4444;
    --accent-red-light: #fee2e2;
    --accent-yellow: #f59e0b;
    --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-pink: #ec4899;
    --accent-pink-light: #fce7f3;
    --accent-teal: #14b8a6;
    --accent-teal-light: #ccfbf1;

    /* Colors — Background (Light Theme) */
    --bg: #f5f5f5;
    --bg-secondary: #eaeaea;
    --bg-tertiary: #e0e0e0;
    --bg-card: #ffffff;
    --surface: #ffffff;
    --surface-hover: #f3f4f6;

    /* Colors — Borders (Light Theme) */
    --border: #e5e7eb;
    --border-light: #f0f0f0;
    --border-dark: #d1d5db;

    /* Colors — Text (Light Theme) - WCAG AA compliant */
    --text: #111827;
    --text-secondary: #374151;
    --text-muted: #4b5563;
    --link-color: #047857;

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

    /* Border 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;
    --space-3xl: 48px;

    /* Typography — Sizes */
    --font-xs: 11px;
    --font-sm: 12px;
    --font-base: 14px;
    --font-md: 15px;
    --font-lg: 16px;
    --font-xl: 18px;
    --font-2xl: 22px;
    --font-3xl: 28px;

    /* Typography — Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Z-Index Layers */
    --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;
    --transition-slow: 0.3s ease;

    /* Layout */
    --header-height: 56px;
    --sidebar-width: 280px;
    --content-max-width: 90%;
}
