/* Dark Theme Overrides for Home Wi-Fi Captive Portal */

/* Dark theme is the default, but these can be used for theme switching if needed */

.dark-theme {
    --primary-color: #0d0d0d;
    --secondary-color: #1a1a1a;
    --accent-color: #00d4aa;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --error-color: #ff6b6b;
    --success-color: #51cf66;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #000000;
        --text-color: #ffffff;
        --text-secondary: #ffffff;
        --accent-color: #00ff88;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    :root {
        --transition-speed: 0s;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
