.calendrier-reservations {
    margin: 30px 0;
}

.calendrier-vehicule {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.calendrier-vehicule h3 {
    margin-bottom: 20px;
    color: #333;
}

.calendrier-mois {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.calendrier-header {
    background: #0d6efd;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
}

.calendrier-jour {
    aspect-ratio: 1;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 5px;
    text-align: center;
    position: relative;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendrier-jour:hover {
    border-color: #0d6efd;
    transform: scale(1.05);
}

.calendrier-jour.vide {
    background: #f8f9fa;
    border-color: transparent;
    cursor: default;
}

.calendrier-jour.vide:hover {
    transform: none;
}

.calendrier-jour.reserve {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    cursor: not-allowed;
}

.calendrier-jour.reserve:hover {
    transform: none;
}

.calendrier-jour.disponible {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.calendrier-jour.aujourdhui {
    border: 2px solid #ffc107;
    font-weight: bold;
}

.jour-numero {
    font-size: 18px;
    font-weight: bold;
}

.legende {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legende-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legende-couleur {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.legende-couleur.disponible {
    background: #28a745;
}

.legende-couleur.reserve {
    background: #dc3545;
}

.legende-couleur.aujourdhui {
    background: white;
    border: 2px solid #ffc107;
}