/* SkyTools Neutral Theme - Cool Professional */

:root {
    /* Background */
    --background-gradient: linear-gradient(135deg, #1e293b 0%, #334155 25%, #475569 40%, #334155 80%, #1e293b 100%);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: rgba(248, 250, 252, 0.8);
    
    /* Header & Navigation */
    --header-background: rgba(71, 85, 105, 0.1);
    --border-color: rgba(148, 163, 184, 0.2);
    --nav-hover: rgba(148, 163, 184, 0.15);
    
    /* Logo */
    --logo-gradient: linear-gradient(45deg, #94a3b8, #60a5fa, #fbbf24);
    
    /* Version Switcher */
    --switcher-background: rgba(71, 85, 105, 0.15);
    --btn-inactive: rgba(71, 85, 105, 0.2);
    --btn-active: linear-gradient(45deg, #475569, #64748b);
    --btn-active-shadow: 0 2px 8px rgba(71, 85, 105, 0.4);
    --btn-hover: rgba(148, 163, 184, 0.25);
    --btn-glow-color: rgba(148, 163, 184, 0.7); /* slate gray */
    
    /* CTA Button */
    --cta-gradient: linear-gradient(45deg, #0f172a, #1e293b);
    --cta-hover: linear-gradient(45deg, #020617, #0f172a);
    --cta-text: #f8fafc;
    
    /* Accent Colors */
    --accent-main: #94a3b8;
    --accent-light: #cbd5e1;
    --accent-gold: #60a5fa;
    --accent-gold-gradient: linear-gradient(45deg, #3b82f6, #60a5fa);
    --accent-subtle: #94a3b8;
    
    /* Sections */
    --section-background: rgba(71, 85, 105, 0.08);
    --feature-background: rgba(71, 85, 105, 0.05);
    --feature-border: rgba(148, 163, 184, 0.15);
    
    /* Edition Navigation */
    --edition-border: rgba(71, 85, 105, 0.5);
    --edition-background: rgba(71, 85, 105, 0.1);
    --edition-active: linear-gradient(45deg, #374151, #475569);
    --edition-active-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    --edition-hover: rgba(71, 85, 105, 0.2);
    
    /* Media Borders */
    --image-border: rgba(148, 163, 184, 0.3);
    --video-border: rgba(148, 163, 184, 0.3);
    
    /* Footer */
    --footer-background: rgba(71, 85, 105, 0.1);
}

/* Form select and option styling */
select option {
    background: white !important;
    color: black !important;
}