:root {
    /* Color Palette */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    
    --secondary: #64748b;
    --secondary-dark: #475569;
    --secondary-light: #f1f5f9;
    
    --success: #10b981;
    --success-dark: #059669;
    --success-light: #ecfdf5;
    
    --danger: #ef4444;
    --danger-dark: #b91c1c;
    --danger-light: #fef2f2;
    
    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-light: #fffbeb;
    
    --info: #3b82f6;
    --info-dark: #2563eb;
    --info-light: #eff6ff;
    
    /* Layout Colors */
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --border-color: #e2e8f0;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    /* Dimensions */
    --sidebar-width: 260px;
    --header-height: 70px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.2s ease-in-out;
}
