.octt-timetable {
    margin: 20px 0;
    padding: 16px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
}

.octt-heading {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.octt-booking-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.octt-booking-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    align-items: center;
}

.octt-booking-time {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-weight: 600;
    color: #222;
}

.octt-booking-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.octt-booking-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    text-align: center;
}

.octt-booking-image {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 2px solid #007cba;
}

.octt-booking-dj {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.octt-booking-genre-inline {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.85rem;
    font-weight: 400;
    color: #555;
}

.octt-booking-meta p {
    margin: 2px 0;
}

@media (max-width: 700px) {
    .octt-booking-media {
        min-width: 140px;
    }

    .octt-booking-image {
        width: 140px;
        height: 140px;
    }
}

.octt-links a {
    margin-right: 8px;
    color: #007cba;
    text-decoration: none;
}

.octt-links a:hover {
    text-decoration: underline;
}

.octt-empty {
    margin: 0;
    color: #555;
}
