/**
 * ═══════════════════════════════════════════════════════════════════════════
 * ⚠️⚠️⚠️ 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 VIDEO CONTENT TABLES - MODERN DESIGN
   ═══════════════════════════════════════════════════════════════════════ */

/* Video Content Table Container */
.videos-container .wiki-table {
    margin: var(--spacing-large) 0;
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.videos-container .wiki-table:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Table Header - Professional Design */
.videos-container .wiki-table-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    display: flex;
    font-family: var(--font-family-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--font-size-small);
    position: relative;
    overflow: hidden;
}

.videos-container .wiki-table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.videos-container .wiki-table-header:hover::before {
    left: 100%;
}

/* Table Header Cells */
.videos-container .wiki-table-header .wiki-table-cell {
    padding: var(--spacing-medium) var(--spacing-small);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

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

.videos-container .wiki-table-header .wiki-table-cell:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

/* Table Rows - Professional Data Display */
.videos-container .wiki-table-row {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Hover Effects */
.videos-container .wiki-table-row:hover {
    background: var(--primary-color-light);
    transform: translateX(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.videos-container .wiki-table-row:hover .wiki-table-cell {
    color: var(--text-dark);
    font-weight: 500;
}

/* Table Cells - Clean Typography */
.videos-container .wiki-table-cell {
    padding: var(--spacing-medium) var(--spacing-small);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-family-base);
    font-size: var(--font-size-body);
    color: var(--text-color);
    border-right: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

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

/* Special styling for data cells */
.videos-container .wiki-table-row .wiki-table-cell {
    font-weight: 400;
    line-height: 1.5;
}

/* Highlight important data */
.videos-container .wiki-table-row .wiki-table-cell:contains('%') {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .videos-container .wiki-table {
        margin: var(--spacing-medium) 0;
        border-radius: 8px;
    }
    
    .videos-container .wiki-table-header,
    .videos-container .wiki-table-row {
        flex-direction: column;
    }
    
    .videos-container .wiki-table-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: var(--spacing-small);
        text-align: left;
        justify-content: flex-start;
    }
    
    .videos-container .wiki-table-cell:last-child {
        border-bottom: none;
    }
    
    .videos-container .wiki-table-header .wiki-table-cell {
        background: var(--primary-color);
        color: var(--text-light);
        font-weight: 600;
        text-transform: uppercase;
        font-size: var(--font-size-small);
    }
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .videos-container .wiki-table {
        margin: var(--spacing-small) 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .videos-container .wiki-table-cell {
        padding: var(--spacing-small);
        font-size: var(--font-size-small);
    }
}

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