container_horaires {
    max-width: 600px;
    width: 100%;
}




.schedule-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.schedule-table:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.schedule-table th {
    padding: 15px;
    background-color: rgba(232,165,65,0.5);
    color: white;
    font-weight: bold;
    text-align: left;
    transition: background-color 0.3s ease;
}

.schedule-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.open {
    background-color: #d4edda;
    color: #5a8c66;
}

.closed {
    background-color: #f8d7da;
    color: #a86370;
}

.hours {
    font-weight: bold;
}

.current-day {
    border-left: 4px solid #fbc2eb;
}

.legend {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.status-message {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.status-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.open-now {
    background-color: #d4edda;
    color: #5a8c66;
}

.closed-now {
    background-color: #f8d7da;
    color: #a86370;
}

tr.highlight-row {
    transform: scale(1.02);
}

.open:hover, .closed:hover {
    transform: translateX(5px);
}
