@charset "utf-8";
/* CSS Document */
.vakantie-lijst {
    background-color: #f0f8ff; /* zelfde als schooltijden */
    border-radius: 12px;
    padding: 20px;
    max-width: 600px;
    margin: 20px 0; /* links uitlijnen */
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.vakantie-lijst h2 {
    margin-top: 0;
    color: #0077b6;
    font-size: 1.3rem;
    text-align: left;
}

.vakantie-item {
    display: flex;
    justify-content: space-between; /* naam links, tijd rechts */
    padding: 8px 0;
    border-bottom: 1px solid #d0e7ff;
}

.vakantie-item:last-child {
    border-bottom: none;
}

.vakantie-naam {
    font-weight: bold;
    color: #0077b6;
}

.vakantie-tijd {
    color: #023e8a;
}

@media (max-width: 600px) {
    .vakantie-item {
        flex-direction: column;   /* onder elkaar */
        align-items: flex-start;  /* links uitlijnen */
        gap: 4px;                 /* kleine ruimte tussen naam en tijd */
    }

    .vakantie-tijd {
        font-size: 0.95rem;       /* iets compacter */
    }
}



/* Schooltijden*/

.schooltijden-rooster {
    background-color: #f0f8ff; /* lichtblauw */
    border-radius: 12px;
    padding: 20px;
    max-width: 600px;
    margin: 20px 0; /* alleen verticale margin, geen auto */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left; /* alles links uitlijnen */
}

.schooltijden-rooster h2 {
    margin-top: 0;
    color: #0077b6;
    font-size: 1.3rem;
    text-align: left; /* titel ook links */
}

.schooltijd-item {
    display: flex;
    justify-content: space-between; /* dag links, tijd rechts */
    padding: 8px 0;
    border-bottom: 1px solid #d0e7ff;
    transition: background-color 0.2s;
}

.schooltijd-item:last-child {
    border-bottom: none;
}

.schooltijd-item:hover {
    background-color: #e1f5fe;
}

.dag {
    font-weight: bold;
    color: #0077b6;
}

.tijd {
    color: #023e8a;
}

.schooltijd-opmerking {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #023e8a;
}



