/* Styles simples pour les horaires */
.horaires-simples {
    margin-top: 10px;
    line-height: 1.8;
    padding-left: 35px;
    color: var(--text-color);
}

.ferme {
    color: #F44336;
    font-weight: 500;
}

/* Jour actuel en vert */
.jour-actuel {
    color: #4CAF50;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.jour-actuel::before {
    content: '●';
    display: inline-block;
    margin-right: 5px;
    color: #4CAF50;
    font-size: 12px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 576px) {
    .horaires-simples {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}
