/* =========================================
   FIRELAX SEO - DARK THEME FIXES
   Alle Bootstrap-Overrides für Dark Mode
   ========================================= */

/* 1. TABELLEN: Weiße Schrift in gestreiften Zeilen erzwingen */
.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    --bs-table-striped-color: #ffffff !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: #ffffff !important;
}

/* 2. TABELLEN: Alle Tabellenzellen weiß (falls immer noch grau) */
body .table > tbody > tr > td,
body .table > tbody > tr > th {
    color: #ffffff !important;
}

/* 3. TABELLEN: Globale Farben für alle Tabellen */
.table {
    --bs-table-color: #ffffff;
    --bs-table-striped-color: #ffffff;
    --bs-table-bg: transparent;
    color: #ffffff;
}

/* 4. FALLBACK: Ultra-spezifische Regel falls Bootstrap zu stark ist */
.table.table-striped tbody tr:nth-of-type(odd) td {
    color: #ffffff !important;
}

.table.table-striped tbody tr:nth-of-type(odd) th {
    color: #ffffff !important;
}

/* 5. BONUS: Hover-Effekte auch weiß halten */
.table-striped > tbody > tr:hover > * {
    color: #ffffff !important;
}

/* =========================================
   ENDE DARK THEME FIXES
   ========================================= */
