/* ============================================
   DARK THEME
   ICT Analyzer Pro V29.5
   Default theme - Binance-inspired dark theme
============================================ */

/* Theme already defined in variables.css */
/* This file can be used for theme-specific overrides */

/* Additional dark theme refinements */
body {
    color-scheme: dark;
}

/* Selection colors */
::selection {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

/* Focus states */
*:focus-visible {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Placeholder text */
::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--text-muted);
}

::-ms-input-placeholder {
    color: var(--text-muted);
}

/* Link colors */
a {
    color: var(--accent-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Disabled states */
button:disabled,
input:disabled,
select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Print styles - optional */
@media print {
    body {
        background: white;
        color: black;
    }
}
