/**
 * ═══════════════════════════════════════════════════════════════════════════
 * ⚠️⚠️⚠️ 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 TABLE STYLING - MODERN DIV-BASED LAYOUT
   ═══════════════════════════════════════════════════════════════════════ */

/* Table Container */
.wiki-table {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
}

/* Table Header */
.wiki-table-header {
    display: flex;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.wiki-table-header .wiki-table-cell {
    padding: 1rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-family-heading);
    font-weight: 700;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.wiki-table-header .wiki-table-cell:last-child {
    border-right: none;
}

/* Table Rows */
.wiki-table-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: var(--background-color);
}

.wiki-table-row:nth-child(even) {
    background-color: var(--background-light);
}

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

.wiki-table-row:last-child {
    border-bottom: none;
}

/* Table Cells */
.wiki-table-cell {
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--border-color);
    font-family: var(--font-family-base);
    font-size: var(--font-size-body);
    line-height: 1.5;
    color: var(--text-color);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.wiki-table-cell:last-child {
    border-right: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wiki-table {
        margin: 1rem 0;
        border-radius: 6px;
    }
    
    .wiki-table-header,
    .wiki-table-row {
        flex-direction: column;
    }
    
    .wiki-table-header .wiki-table-cell,
    .wiki-table-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        justify-content: flex-start;
        min-height: 50px;
        padding: 0.75rem 1rem;
    }
    
    .wiki-table-header .wiki-table-cell:last-child,
    .wiki-table-cell:last-child {
        border-bottom: none;
    }
    
    .wiki-table-header .wiki-table-cell {
        background-color: var(--primary-color);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .wiki-table {
        margin: 0.5rem 0;
        border-radius: 4px;
    }
    
    .wiki-table-header .wiki-table-cell,
    .wiki-table-cell {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-height: 45px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   ⚠️ 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).
   ═══════════════════════════════════════════════════════════════════════ */
