/* ====== Wrapper ====== */
.vv-groepslessen-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    background: transparent;
    color: #fff;
    font-family: inherit;
}

/* ====== Week-navigatie ====== */
.vv-week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.vv-week-nav button {
    background: #000;
    color: #fff;
    border: 2px solid transparent;
    padding: 10px 18px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.vv-week-nav button:hover {
    border-color: #F2C200;
}

/* ====== Week-label (datum bovenaan) ====== */
.vv-week-label {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1.1em;
    color: #000;            /* of #F2C200 als je geel wilt */
}

/* ====== Rooster grid: alle 7 dagen naast elkaar ====== */
.vv-rooster-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

/* ====== Dag-kolom ====== */
.vv-dag-kolom {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ====== Dag-titel (zwarte balk, WITTE tekst) ====== */
.vv-dag-titel {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 8px 6px;
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: 700;
    border-bottom: 3px solid #F2C200;
}


/* ====== Leskaart: standaard (wit) ====== */
.vv-les-kaart {
    background: #fff;
    color: #000;
    border-radius: 0;
    padding: 12px 14px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    transition: background 0.2s ease, color 0.2s ease;
    overflow: hidden;                /* houdt inhoud binnen het vak */
}

.vv-les-kaart .vv-les-tijd {
    color: #000;
    font-weight: 600;
    font-size: 0.95em;
}

.vv-les-kaart .vv-les-titel {
    color: #F2C200;
    font-weight: 700;
    font-size: 1.05em;
    margin: 4px 0;
    /* === lange namen netjes binnen het vak === */
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.vv-les-kaart .vv-les-plaatsen {
    color: #000;
    text-decoration: none;
    font-size: 0.85em;
    display: block;
    margin-bottom: 8px;
}

/* ====== Boeken-link ====== */
.vv-les-kaart .vv-les-boeken {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ====== Waterles-detail: blauwe rand links ====== */
.vv-les-kaart.vv-les-water {
    border-left: 4px solid #1B75BB;
}

/* ====== Hover: blok zwart ====== */
.vv-les-kaart:hover {
    background: #000;
    color: #fff;
}

.vv-les-kaart:hover .vv-les-tijd {
    color: #fff;
}

.vv-les-kaart:hover .vv-les-titel {
    color: #fff;
}

.vv-les-kaart:hover .vv-les-plaatsen {
    color: #fff;
}

/* ====== Alle links in een kaart geel bij hover ====== */
.vv-les-kaart:hover a {
    color: #F2C200 !important;
}

/* ====== Waterles bij hover: blauwe rand blijft ====== */
.vv-les-kaart.vv-les-water:hover {
    border-left: 4px solid #1B75BB;
}

/* ====== Status-meldingen ====== */
.vv-loading,
.vv-leeg,
.vv-error {
    padding: 2rem;
    text-align: center;
    color: #888;
}

/* ====== Mobiel ====== */
@media (max-width: 600px) {
    .vv-week-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .vv-rooster-grid {
        grid-template-columns: 1fr;
    }

    /* Dag-titel op mobiel: extra opvallend met ruimte erboven */
    .vv-dag-titel {
        margin-top: 1.5rem;
        font-size: 1.15em;
        text-align: left;
        padding: 10px 14px;
    }

    /* Eerste dag niet te veel ruimte bovenaan */
    .vv-dag-kolom:first-child .vv-dag-titel {
        margin-top: 0;
    }
}
