/* ═══════════════════════════════════════════════════════
   🌊 DVBSOLUTION - Ocean Theme Variables
   ═══════════════════════════════════════════════════════ */

:root {
    /* Background colors */
    --bg-deep: #0a1929;
    --bg-card: #0d2137;
    --bg-hover: #132f4c;
    --bg-input: rgba(255, 255, 255, 0.05);
    
    /* Accent colors */
    --accent-cyan: #00d4ff;
    --accent-teal: #06b6d4;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    
    /* Status colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Text colors */
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Border */
    --border: rgba(148, 163, 184, 0.1);
    --border-hover: rgba(6, 182, 212, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-header: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, transparent 100%);
    --gradient-card: linear-gradient(180deg, rgba(13, 33, 55, 0.9) 0%, rgba(10, 25, 41, 0.95) 100%);
    
    /* Sizing */
    --header-height: 56px;
    --sidebar-width: 240px;
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
}
