.opening_hours_img {
    margin-right: 10px;
}

/* ↓ Tabel ↓ */

.openingstijden-tabel {
    border-collapse: collapse;
    width: 100% !important;
}

.openingstijden-tabel th,
.openingstijden-tabel td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

/* Alleen cellen van dagen die in de huidige week al voorbij zijn, krijgen lagere opacity */
.openingstijden-tabel td.past-day {
    opacity: 0.6;
}

tr th:nth-child(3) {
    padding-left: 12px !important;
}

/* Huidige dag in de huidige week wordt rood gemarkeerd */
.openingstijden-tabel td.current-day {
    background-color: rgba(255, 0, 0, 0.2);
}

tr td:nth-child(2) {
    width: 30%;
    border-right: 2px solid #00000026 !important;
}

tr td:nth-child(3) {
    padding-left: 12px !important;
}


@media screen and (max-width: 768px) {

    .openingstijden-tabel th:nth-child(3),
    .openingstijden-tabel td:nth-child(3) {
        display: none;
    }

    .openingstijden-tabel th:nth-child(1),
    .openingstijden-tabel td:nth-child(1),
    .openingstijden-tabel th:nth-child(2),
    .openingstijden-tabel td:nth-child(2) {
        width: 50%;
        border-right: unset !important;
    }
}