/* =====================================================
   CSS VARIABLES / CUSTOM PROPERTIES
   ===================================================== */

:root {
    /* Core colors */
    --bg-body: #0a0a0a;
    --bg-header: #0a0a0a;
    --bg-card: #161616;
    --bg-dropdown: #1a1a1a;
    --bg-input: #111;
    --bg-hover: rgba(255,255,255,0.05);
    
    /* Borders */
    --border-color: #333;
    --border-light: #444;
    --border-dark: #222;
    
    /* Accent colors */
    --accent: #ff9800;
    --accent-hover: #ffb74d;
    --green: #4caf50;
    --blue: #4fc3f7;
    --purple: #bb86fc;
    --gold: #ffd700;
    --gold-dim: #aa9d56;
    
    /* Text colors */
    --text-main: #e0e0e0;
    --text-sub: #888;
    --text-muted: #666;
    --text-dim: #555;
    
    /* Status colors */
    --red-box-bg: #220a0a;
    --red-box-border: #6e1818;
    --urgent-red: #ff3333;
    
    /* UI elements */
    --bar-bg: #2a2a2a;
    --header-height: 72px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 15px rgba(255,152,0,0.3);
    
    /* Transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
}
