/**
 * ═══════════════════════════════════════════════════════════════════════════
 * ⚠️⚠️⚠️ SAMPLE CSS-DATEI - DIESE DATEI IST FEDERFÜHREND! ⚠️⚠️⚠️
 * ═══════════════════════════════════════════════════════════════════════════
 * 
 * DIESE SAMPLE-DATEI IST DIE ABSOLUTE REFERENZ FÜR ALLE CSS-DATEIEN!
 * 
 * ABSOLUT VERBOTEN:
 * - Hartcodierte Farben (z.B. #f39324, rgb(255,0,0))
 * - Hartcodierte Schriften (z.B. Arial, Helvetica)
 * - CSS-Regeln duplizieren die bereits in base.css, widgets-*.css existieren
 * - Globale Selektoren (body, html, a, div) überschreiben
 * 
 * PFLICHT: NUR CSS Custom Properties verwenden!
 * - Farben: var(--primary-color), var(--secondary-color), var(--text-color)
 * - Schriften: var(--font-family-base), var(--font-size-body)
 * - Spacing: var(--spacing-small), var(--spacing-medium)
 * 
 * WARUM:
 * - Zentrale Theme-Verwaltung
 * - Konsistenz über alle Screens
 * - Einfache Anpassung des gesamten Designs an einer Stelle
 * 
 * INHALT:
 * - NUR screen-spezifische CSS-Regeln
 * - Keine Wiederholung von Basis-CSS
 * - Kann auch leer sein wenn keine spezifischen Styles nötig sind
 * 
 * ═══════════════════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════════════
   ⚠️ PROFESSIONAL DIV-TABLE STYLING - MODERN & RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

/* Table Container */
.wiki-table {
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    font-family: var(--font-family-base);
}

/* Table Header */
.wiki-table-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--font-size-small);
}

/* Table Rows */
.wiki-table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    background: var(--background-color);
}

/* Zebra Striping */
.wiki-table-row:nth-child(even) {
    background: var(--background-light);
}

/* Hover Effect */
.wiki-table-row:hover {
    background: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table Cells */
.wiki-table-cell {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    font-size: var(--font-size-body);
    color: var(--text-color);
    border-right: 1px solid var(--border-light);
    min-height: 60px;
}

/* Remove border from last cell in each row */
.wiki-table-cell:last-child {
    border-right: none;
}

/* Header Cell Styling */
.wiki-table-header .wiki-table-cell {
    font-weight: 600;
    color: var(--text-light);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wiki-table-header,
    .wiki-table-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wiki-table-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 0.75rem 1rem;
        min-height: auto;
    }
    
    .wiki-table-cell:last-child {
        border-bottom: none;
    }
    
    /* Add labels for mobile */
    .wiki-table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        margin-right: 0.5rem;
        min-width: 100px;
    }
}

/* Content-specific styling */
.dead-page-finding-container {
    background-color: var(--background-color);
    padding: var(--spacing-medium);
}

/* Highlight important information */
.wiki-table-row:first-of-type .wiki-table-cell {
    font-weight: 600;
    color: var(--primary-color);
}

/* Success rate highlighting */
.wiki-table-cell:contains("Hoch") {
    color: var(--success-color);
    font-weight: 600;
}

.wiki-table-cell:contains("Mittel") {
    color: var(--warning-color);
    font-weight: 600;
}

.wiki-table-cell:contains("Niedrig") {
    color: var(--info-color);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════
   ⚠️ WICHTIG: Oft reichen die Basis-CSS-Dateien aus!
   Wenn keine spezifischen Styles benötigt werden, kann diese Datei 
   fast leer sein (nur der Header-Kommentar bleibt).
   ═══════════════════════════════════════════════════════════════════════ */
