/*
 * Styles for the JetEngine Artist Timetable.
 * The table is wrapped in a scrollable container for responsiveness.
 */
.jeat-timetable-wrapper {
    width: 100%;
    overflow-x: auto;
}

.jeat-timetable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.jeat-timetable th,
.jeat-timetable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    word-wrap: break-word;
    background-color: #fff;
}

.jeat-timetable thead th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.jeat-event {
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    .jeat-timetable th, .jeat-timetable td {
        padding: 6px;
        font-size: 12px;
    }
}