/* ============================================================
   AnAePP Theme Overrides — Light/Dark Mode
   Fixes für hardcodierte Farben in PHP-Inline-Styles
   ============================================================ */

/* ---- Loader ---- */
body:not(.dark-mode-active) #loader {
    background: #fff;
}

/* ---- Dienst-Auswahl Popover (dienstplanung.php) ---- */

#DienstAuswahlPopover {
    background: #f5f7fa;
    border: 1px solid #cbd5e1;
    color: #1e293b;
}
#DienstAuswahlPopover .popover-header-line {
    border-bottom: 1px solid #e2e8f0;
}
#DienstAuswahlPopover .popover-title,
#DienstAuswahlPopover .popover-close {
    color: #64748b;
}
#DienstAuswahlPopover .dienst-auswahl-btn {
    color: #374151;
}
#DienstAuswahlPopover .dienst-auswahl-btn.aktiv {
    color: #1e40af;
    background: rgba(58,134,255,0.1);
}
#DienstAuswahlPopover .popover-delete-border {
    border-top: 1px solid #e2e8f0;
}

body.dark-mode-active #DienstAuswahlPopover {
    background: #1e2a3a;
    border: 1px solid #2e3e52;
    color: #bbc8d4;
}
body.dark-mode-active #DienstAuswahlPopover .popover-header-line {
    border-bottom: 1px solid #273545;
}
body.dark-mode-active #DienstAuswahlPopover .popover-title,
body.dark-mode-active #DienstAuswahlPopover .popover-close {
    color: #7a8ea0;
}
body.dark-mode-active #DienstAuswahlPopover .dienst-auswahl-btn {
    color: #bbc8d4;
}
body.dark-mode-active #DienstAuswahlPopover .dienst-auswahl-btn.aktiv {
    color: #fff;
    background: rgba(58,134,255,0.13);
}
body.dark-mode-active #DienstAuswahlPopover .popover-delete-border {
    border-top: 1px solid #273545;
}

/* ---- Excel-Kürzel-Dropdown (dienstplanung.php) ---- */

#excelKuerzelSelect {
    background: #fff;
    color: #374151;
    border: 1px solid #cbd5e1;
}
body.dark-mode-active #excelKuerzelSelect {
    background: #1e2a3a;
    color: #ccc;
    border: 1px solid #444;
}

/* ---- Tabellen-Header Gesamtplan (gesamtplanexcelvorschau.php, gesamtplanexcel.php) ---- */

.anaepp-table-header {
    background-color: #e2e8f0 !important;
    color: #1e293b;
}
body.dark-mode-active .anaepp-table-header {
    background-color: #0c1624 !important;
    color: #fff;
}

/* ---- Feiertag-Zeile in Tabellenheader ---- */
.tableleft-feiertag {
    background-color: #D4D5D4 !important;
    color: #1e293b;
}

/* ---- Dienstwunsch-Icons (dienstwuensche_neu.php) ---- */

.dw-circle-icon {
    color: #94a3b8;
}
body.dark-mode-active .dw-circle-icon {
    color: #ccc;
}

/* ---- btn-light im Light Mode (halbtransparent → solid) ---- */

body:not(.dark-mode-active) .btn-light {
    background: #fff !important;
    border: none !important;
    color: #212529 !important;
}
body:not(.dark-mode-active) .btn-light:hover,
body:not(.dark-mode-active) .btn-light:active {
    background: #f3f4f6 !important;
    border: none !important;
}

/* ---- Benachrichtigung Separator/Hints (benachrichtigung.php) ---- */

.anaepp-hint-text {
    color: #64748b;
}
body.dark-mode-active .anaepp-hint-text {
    color: #aaa;
}
