:root {
    /* Brand Colors */
    --primary-color: #4763E4;
    --primary-hover: #3A50B6;
    --primary-light: rgba(59, 130, 246, 0.1);
    
    /* Status Colors */
    --success-color: #16a34a;
    --success-light: #34d399;
    --success-dark: rgba(34, 197, 94, 0.8);
    
    --error-color: #dc2626;
    --error-light: #f87171;
    --error-dark: rgba(239, 68, 68, 0.8);
    
    --warning-color: #d97706;
    --warning-light: #fbbf24;
    --warning-dark: rgba(234, 179, 8, 0.8);

    /* Accent Colors */
    --orange-color: #f97316;
    --orange-light: rgba(249, 115, 22, 0.2);
    --orange-dark: rgba(249, 115, 22, 0.8);
    
    /* Text Colors */
    --text-color: #374151;
    --text-dark: #374151;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --text-muted: #9ca3af;
    --text-secondary: #6b7280;
    
    /* Background Colors */
    --bg-color: #f9fafb;
    --bg-light: #f9fafb;
    --bg-lighter: #ffffff;
    --white: #ffffff;
    
    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #f1f5f9;
    --border-lighter: #f8fafc;
    
    /* Shadow Colors */
    --shadow-color: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 1px 3px var(--shadow-color);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --spacing-xxs: 0.25rem;
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Layout */
    --sidebar-width: 280px;
    --header-height: 64px;
    --container-width: 1400px;
    --card-min-width: 320px;
    
    /* Border Radius */
    --radius-xl: 1rem;
    --radius-lg: 8px;
    --radius-md: 6px;
    --radius-sm: 4px;
    --radius-btn: 4px;
    
    /* Typography */
    --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-xxs: 0.75rem;
    --font-size-xs: 0.8125rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 1.875rem;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --z-sidebar: 40;
    --z-header: 30;
    --z-overlay: 20;
    --z-modal: 50;
    --z-tooltip: 60;
    
    /* RGB values for gradient backgrounds */
    --success-rgb: 25, 135, 84;
    --warning-rgb: 255, 193, 7;
    --info-rgb: 13, 202, 240;
    --danger-rgb: 220, 53, 69;
} 