/**
 * ILAS 2026 – Coarse timetable view
 * Hides individual contributions, keeps MS session blocks only.
 */

/* ── Hide all contributions and their container ── */
ul.meeting-sub-timetable {
    display: none !important;
}

/* ── Make session blocks more prominent since they now stand alone ── */
li.timetable-item.timetable-block {
    min-height: 3em !important;
    margin-bottom: 4px !important;
}

/* ── Ensure the session title is clearly visible ── */
li.timetable-item.timetable-block .timetable-title.top-level {
    font-size: 1.05em !important;
    font-weight: bold !important;
}

/* ── Keep location info visible ── */
li.timetable-item.timetable-block .location-info {
    display: inline-flex !important;
}

/* ── Hide the manage/edit buttons for a cleaner public view ── */
.timetable-item-actions {
    display: none !important;
}

/* ── Hide session details table (empty anyway) ── */
table.timetable-item-details.session-details {
    display: none !important;
}