/* Styles pour l'affichage des horaires des vétérinaires */
.vet-hours {
    font-size: 0.9rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.day-hours:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: #495057;
    min-width: 100px;
}

.hours {
    
    font-weight: 500;
}

.hours:contains("Fermé"), .hours:contains("Gesloten"), .hours:contains("Closed") {
    color: #dc3545;
}

.hours:contains("24"), .hours:contains("24u") {
    color: #007bff;
    font-weight: 600;
}

/* Style compact pour les listes */
.vet-hours-compact {
    font-size: 0.85rem;
    color: #6c757d;
}

