/* Styles pour les périodes de voyage dans le calendrier */
.calendar-day.travel-period {
    background-color: rgba(255, 105, 180, 0.15);
    position: relative;
    overflow: visible;
}

.calendar-day.travel-period::before {
    content: '\f072'; /* Code unicode pour l'icône d'avion (Font Awesome) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 9px;
    background-color: #ff69b4;
    color: white;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.travel-period.disabled {
    background-color: rgba(255, 105, 180, 0.3);
    color: #999;
    cursor: not-allowed;
}

/* Animation pour l'icône d'avion des jours de voyage */
@keyframes plane-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.calendar-day.travel-period::before {
    animation: plane-pulse 2s infinite;
}

/* Styles pour la légende du calendrier */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.travel-legend {
    background-color: #ff69b4;
}
