/* --- DESKTOP VIEW: De Tabel --- */
.desktop-schedule {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    color: white;
}

.desktop-schedule th {
    background-color: #111; /* Donkere achtergrond in plaats van oranje */
    color: var(--brand-orange); /* Oranje letters in plaats van zwart */
    padding: 18px 15px;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-bottom: 3px solid var(--brand-orange); /* Het oranje komt terug als accentlijn */
}

.desktop-schedule td {
    padding: 12px 15px;
    border-bottom: 1px solid #222;
}

/* Zebra-strepen voor leesbaarheid */
.desktop-schedule tr:nth-child(even) {
    background-color: #222;
}

.desktop-schedule tr:hover {
    background-color: #2a2a2a;
}

/* Verberg de mobiele kaarten standaard op PC */
.mobile-schedule {
    display: none;
}

/* --- MOBIELE VIEW (onder 1000px) --- */
@media (max-width: 1000px) {
    .desktop-schedule {
        display: none;
    }

    .mobile-schedule {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        padding: 10px;
    }

    .schedule-card {
        background-color: #1a1a1a;
        border-left: 5px solid var(--brand-orange); /* Duidelijke oranje streep */
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.6);
        border: 1px solid #333;
        border-left-width: 5px; /* Behoud de dikke rand links */
    }

    .schedule-card h3 {
        color: var(--brand-orange);
        margin: 0 0 15px 0;
        font-size: 1.3rem;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }

    .info-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid #262626;
    }

    .info-label {
        color: #888;
        font-size: 0.8rem;
    }

    .info-value {
        color: #fff;
        font-weight: bold;
    }
}