/* ==========================================================================
   PROGRAMM SECTION - HORIZONTAL SCROLLBAR FIX
   Entfernt unerwünschte horizontale Scrollbalken im Programm-Bereich
   ========================================================================== */

/* Entferne horizontale Scrollbalken in allen Programm-Bereichen */
.programm,
.programm__content,
.programm__day,
.programm__timeline,
.programm__sessions,
.programm__tab-buttons,
.programm__tab-nav {
    overflow-x: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Verhindere Überlauf bei Programm-Items */
.programm__item {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}

/* Container-Level Überlauf verhindern */
.programm .container {
    overflow-x: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Spezifische Web-Ansicht Korrekturen */
@media (min-width: 769px) {
    .programm,
    .programm__content,
    .programm__timeline {
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    /* Verhindere Grid-Überlauf */
    .programm__item {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
}

/* Mobile-spezifische Korrekturen */
@media (max-width: 768px) {
    .programm,
    .programm__content,
    .programm__timeline {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: auto !important;
    }
}