/* --- BASE DARK MODE (SFONDO AGGIORNATO A #0E1527) --- */
html[data-theme="dark"], 
html[data-theme="dark"] body {
    background-color: #0E1527 !important;
    color: #e0e0e0 !important;
}

/* --- NAV, PANNELLI, INPUT, MODALI --- */
html[data-theme="dark"] .navbar,
html[data-theme="dark"] .footer,
html[data-theme="dark"] .panel,
html[data-theme="dark"] .well,
html[data-theme="dark"] .list-group-item,
html[data-theme="dark"] .modal-content,
html[data-theme="dark"] .dropdown-menu {
    background-color: #0E1527 !important; /* Uniformato al fondo del sito */
    border-color: #1e293b !important; /* Bordi leggermente più chiari per stacco */
    color: #e0e0e0 !important;
}

html[data-theme="dark"] .form-control {
    background-color: #1a233a !important; /* Input leggermente più chiari del fondo */
    color: #fff !important;
    border-color: #2d3748 !important;
}

/* --- GESTIONE LINK DARK MODE --- */
/* 1. Regola generica per i link nel contenuto (azzurro) */
html[data-theme="dark"] a {
    color: #90caf9 !important;
}

/* 2. ECCEZIONE NAVBAR: Forza il bianco per il testo del menu */
html[data-theme="dark"] .navbar-nav .nav-link,
html[data-theme="dark"] .navbar-nav .nav-link span,
html[data-theme="dark"] .navbar-brand {
    color: #ffffff !important;
}

/* 3. ICONA PREPAGATO: Mantiene il verde originale */
html[data-theme="dark"] .navbar-nav .nav-link i.fa-credit-card {
    color: #28a745 !important;
}

/* --- FIX MENU MOBILE (Linee Hamburger) --- */
html[data-theme="dark"] .navbar-toggle .icon-bar {
    background-color: #ffffff !important;
}

html[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1) grayscale(1) brightness(2);
}

/* --- FOOTER (Massima priorità) --- */
html[data-theme="dark"] body #footer,
html[data-theme="dark"] #footer {
    background-color: #0E1527 !important;
    border-top: 1px solid #1e293b !important;
    color: #aaaaaa !important;
}

html[data-theme="dark"] #footer a {
    color: #bb86fc !important;
}

/* --- MEDIA QUERY SISTEMA --- */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) body {
        background-color: #0E1527 !important;
    }
    html:not([data-theme="light"]) .navbar-toggle .icon-bar {
        background-color: #ffffff !important;
    }
}

/* --- FIX PER MODALITÀ LIGHT --- */
html[data-theme="light"] body {
    background-color: #ffffff !important;
    color: #333333 !important;
}
html[data-theme="light"] .navbar-toggle .icon-bar {
    background-color: #333333 !important;
}

/* Stile per gli item dei menu in Dark Mode */
html[data-theme="dark"] .dropdown-item,
html[data-theme="dark"] .lang-item {
    color: #ffffff !important;
}

html[data-theme="dark"] .dropdown-item:hover,
html[data-theme="dark"] .lang-item:hover {
    background-color: #1a233a !important;
    color: #fff !important;
}