/* Masquer les onglets sur mobile */
@media (max-width: 768px) {
    .delivery-tabs-nav {
        display: none !important;
    }
    
    /* Afficher directement les deux sections */
    .delivery-tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Réorganiser l'affichage */
    .delivery-tabs-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    /* Ajuster l'espacement */
    .delivery-field-group {
        margin-bottom: 0 !important;
    }
    
    /* Réduire la taille des inputs pour mobile */
    .delivery-date-input,
    .delivery-time-input {
        font-size: 16px !important;
        padding: 12px !important;
    }
}



 /* Masquer définitivement les onglets sur mobile */
    @media (max-width: 768px) {
        .delivery-tabs-nav {
            display: none !important;
        }
        
        /* Afficher tous les contenus en même temps sur mobile */
        .delivery-tab-pane {
            display: block !important;
        }
        
        /* Espacement entre les sections sur mobile */
        .delivery-tabs-content {
            display: flex !important;
            flex-direction: column !important;
            gap: 20px !important;
        }
    }





.delivery-options-card {
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        padding: 12px;
        margin-bottom: 20px;
        font-size: 12px;
    }



/* Styles communs pour les champs date et heure */
.date-input-container,
.time-input-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 15px auto !important;
}

.delivery-date-input,
.delivery-time-input {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 280px !important;
    max-width: 90% !important;
    cursor: pointer !important;
    padding: 12px 16px !important;
    border: 2px solid #28a745 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    background: white !important;
}

.delivery-date-input:focus,
.delivery-time-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
}

/* Centrer la grille des créneaux horaires */
.time-slots-container {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 15px !important;
}

.time-slots-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 10px !important;
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Centrer le calendrier seulement quand il est visible */
.calendar-container[style*="display: block"],
.calendar-container[style*="display: flex"] {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

#delivery_calendar {
    margin: 0 auto !important;
}



/* Style pour l'input d'heure quand une sélection est faite */
.delivery-time-input.selected {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Animation de fermeture */
.time-slots-container {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.time-slots-container[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
}





/* Dates passées / indisponibles */
.delivery-options-card .calendar-day.disabled,
.delivery-options-card .calendar-day.unavailable {
    color: red;          /* Texte rouge */
    font-weight: bold;    /* Gras pour mieux signaler */
    cursor: not-allowed;  /* Curseur interdit */
    opacity: 0.6;         /* Légèrement translucide */
}


/* EXIGENCE: Heures passées en rouge et non cliquables */
.delivery-options-container .time-slot.past-time .time-slot-inner {
    background-color: #ffe6e6 !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.delivery-options-container .time-slot.past-time .time-value {
    color: #dc3545 !important;
    font-weight: bold;
}

.delivery-options-container .time-slot.past-time .availability {
    color: #dc3545 !important;
    font-weight: bold;
}

/* Styles pour les heures passées - TRÈS VISIBLES */
.time-slot.past-time .time-slot-inner {
    background: #ffcccc !important;
    border: 2px solid #ff0000 !important;
    color: #cc0000 !important;
    cursor: not-allowed !important;
    opacity: 0.8;
    font-weight: bold;
}

.time-slot.past-time .time-value {
    color: #cc0000 !important;
    font-weight: bold;
    text-decoration: line-through;
}

.time-slot.past-time .availability {
    color: #cc0000 !important;
    font-weight: bold;
}

/* Empêcher complètement les interactions */
.time-slot.past-time {
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.time-slot.unavailable {
    pointer-events: none !important;
    cursor: not-allowed !important;
}



/* Aujourd'hui */
.delivery-options-card .calendar-day.today {
    border: 1px solid #0073aa; /* Mettre en avant aujourd'hui */
}

/* Date sélectionnée */
.delivery-options-card .calendar-day.selected {
    background-color: #0073aa;
    color: #fff;
}

    .delivery-options-card h4 {
        color: #343a40;
        margin-bottom: 12px;
        font-size: 13px;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
    }

    .delivery-options-card .form-group {
        margin-bottom: 10px;
    }

    .delivery-options-card label {
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
        font-size: 11px;
    }

    .delivery-options-card label.required:after {
        content: " *";
        color: #dc3545;
    }

    .delivery-options-card select {
        width: 100%;
        padding: 6px;
        border: 1px solid #ced4da;
        border-radius: 3px;
        font-size: 11px;
        height: 28px;
    }

    .delivery-info {
        background: #e7f5ff;
        padding: 8px;
        border-radius: 3px;
        margin-top: 10px;
        font-size: 11px;
    }

    .delivery-info i {
        margin-right: 4px;
        color: #228be6;
        font-size: 11px;
    }

    #delivery-errors {
        margin-top: 10px;
        font-size: 11px;
    }

    /* NOUVEAU CSS COMPACT */
    .delivery-options-container {
        max-width: 100%;
        margin: 1rem 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 12px;
    }

    .delivery-card {
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .delivery-card-header {
    background: #fff9c4; /* Jaune pâle */
    color: #333; /* Texte foncé pour meilleur contraste */
    padding: 12px;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5; /* Ligne de séparation subtile */
}

.delivery-card-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD54F 0%, #FFF176 100%); /* Dégradé jaune */
}

.header-icon {
    background: rgba(0, 0, 0, 0.1); /* Fond plus sombre pour contraster avec le jaune */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
    color: #5d4037; /* Couleur marron pour le contraste */
}


    .delivery-card-title {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
    }

    .delivery-card-body {
        padding: 15px;
    }

    .delivery-tabs-nav {
        display: flex;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 12px;
    }

    .delivery-tab-btn {
        background: none;
        border: none;
        padding: 8px 12px;
        font-size: 11px;
        font-weight: 600;
        color: #718096;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .delivery-tab-btn.active {
        color: #4299e1;
        border-bottom: 2px solid #4299e1;
    }

    .delivery-tab-btn i {
        font-size: 12px;
    }

    .delivery-tabs-content {
        position: relative;
    }

    .delivery-tab-pane {
        display: none;
    }

    .delivery-tab-pane.active {
        display: block;
    }

    .delivery-field-group {
        margin-bottom: 12px;
    }

    .delivery-field-label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #2d3748;
        font-size: 11px;
        display: flex;
        align-items: center;
    }

    .delivery-field-label i {
        margin-right: 6px;
        color: #4a5568;
        font-size: 12px;
    }

    .date-input-container {
        position: relative;
        margin-bottom: 10px;
    }

    #delivery_date_input {
        cursor: pointer;
        background: #f7fafc;
        border: 1px solid #e2e8f0;
        border-radius: 5px;
        padding: 6px 8px;
        font-size: 11px;
        height: 28px;
    }

    .calendar-container {
        border: 1px solid #e2e8f0;
        border-radius: 5px;
        padding: 8px;
        background: #fff;
        margin-top: 8px;
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .calendar-nav-btn {
        background: none;
        border: none;
        font-size: 12px;
        cursor: pointer;
        color: #4a5568;
        padding: 4px;
    }

    .calendar-month-year {
        font-weight: 600;
        font-size: 12px;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 3px;
    }

    .calendar-weekday {
        text-align: center;
        font-weight: 600;
        color: #718096;
        padding: 4px;
        font-size: 10px;
    }

    .calendar-day {
        text-align: center;
        padding: 5px;
        cursor: pointer;
        border-radius: 3px;
        font-size: 10px;
    }

    .time-slots-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
    }

    .time-slot-inner {
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 8px;
        text-align: center;
        background: #f7fafc;
        font-size: 11px;
    }

    .time-value {
        font-weight: 600;
        margin-bottom: 3px;
        font-size: 11px;
    }

    .availability {
        font-size: 10px;
        color: #718096;
    }

    .unavailable {
        font-size: 10px;
        color: red;
        font-weight: 500;
    }

    .no-times-message {
        text-align: center;
        padding: 15px;
        color: #718096;
        font-style: italic;
        font-size: 11px;
    }

    .delivery-info-notice {
        background: #f0f9ff;
        border-left: 3px solid #4299e1;
        color: #2b6cb0;
        padding: 8px;
        border-radius: 4px;
        margin-top: 12px;
        display: flex;
        align-items: flex-start;
        font-size: 11px;
    }

    .notice-icon {
        font-size: 12px;
        margin-right: 6px;
        color: #4299e1;
    }

    .delivery-info-cart {
        display: block;
        margin-top: 4px;
        font-size: 10px;
    }

    /* EXIGENCE 4: Dates non disponibles (non configurées) en gris */
    .delivery-options-container .calendar-day.unavailable-date {
        color: #ccc !important;
        background-color: #f8f9fa;
        cursor: not-allowed;
        opacity: 0.5;
    }

    /* EXIGENCE 5: Dates configurées mais passées en rouge */
    .delivery-options-container .calendar-day.past-date {
        color: #dc3545 !important;
        font-weight: bold;
        cursor: not-allowed;
        opacity: 0.7;
    }

    /* Styles existants pour les dates désactivées - à conserver */
    .delivery-options-container .calendar-day.disabled {
        color: #dc3545;
        font-weight: bold;
        cursor: not-allowed;
        opacity: 0.6;
    }

    /* EXIGENCE 3: S'assurer que le calendrier reste ouvert lors de la navigation */
    .calendar-container {
        z-index: 1000;
        position: relative;
    }

    .calendar-header {
        z-index: 1001;
    }

    .calendar-nav-btn {
        z-index: 1002;
        position: relative;
    }

    /* EXIGENCE 1 & 2: Ajustement de l'affichage des disponibilités */
    .time-slot .availability {
        font-size: 10px;
        color: #28a745;
        font-weight: 500;
    }

    /* Cacher complètement le texte de disponibilité quand packets = 0 */
    .time-slot.unavailable .availability {
        display: none;
    }

    @media (max-width: 768px) {
        .delivery-card-header {
            padding: 10px;
        }
        
        .delivery-card-title {
            font-size: 13px;
        }
        
        .delivery-card-body {
            padding: 12px;
        }
        
        .delivery-tab-btn {
            padding: 6px;
            font-size: 10px;
        }
        
        .time-slots-grid {
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        }
    }

    @media (max-width: 576px) {
        .delivery-card-header {
            padding: 10px 8px;
        }
        
        .header-icon {
            width: 24px;
            height: 24px;
            font-size: 12px;
            margin-right: 8px;
            margin-bottom: 0;
        }
        
        .time-slots-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }




/* BORDURE JAUNE DIRECTEMENT SUR LE BLOC EXISTANT SANS MARGES */
.delivery-card {
    border: 1.5px solid #FFD700 !important;
    border-radius: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* SUPPRIMER TOUTES LES MARGES */
.delivery-options-container {
    margin: 0 !important;
    padding: 0 !important;
}

.date-input-container,
.time-input-container {
    margin: 0 auto !important;
    padding: 0 !important;
}

.delivery-card-header {
    margin: 0 !important;
    padding: 10px !important;
}

.delivery-card-body {
    margin: 0 !important;
    padding: 10px !important;
}

.delivery-card-title {
    margin: 0 !important;
}

.delivery-tabs-nav {
    margin: 0 !important;
}

.delivery-tab-btn {
    margin: 0 !important;
}

/* AUGMENTER LA TAILLE DES POLICES */
.delivery-date-input,
.delivery-time-input {
    font-size: 15px !important;
    padding: 10px 14px !important;
    width: 300px !important;
    margin: 0 !important;
}

.delivery-card-title {
    font-size: 18px !important;
}

.delivery-tab-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
}

.time-value {
    font-size: 16px !important;
    margin: 0 !important;
}

.availability {
    font-size: 14px !important;
    margin: 0 !important;
}

/* CALENDRIER PLUS LARGE */
.calendar-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.custom-calendar {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.calendar-grid {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.calendar-day {
    font-size: 16px !important;
    padding: 12px !important;
    height: 50px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.calendar-weekday {
    font-size: 14px !important;
    padding: 10px !important;
    margin: 0 !important;
}

/* DATES DISPONIBLES EN NOIR */
.calendar-day:not(.unavailable-date):not(.past-date):not(.other-month) {
    color: #000000 !important;
    font-weight: bold !important;
}

/* CRÉNEAUX HORAIRES DISPONIBLES EN NOIR */
.time-slot:not(.unavailable):not(.past-time) .time-value {
    color: #000000 !important;
    font-weight: bold !important;
}

.time-slot:not(.unavailable):not(.past-time) .availability {
    color: #28a745 !important;
    font-weight: bold !important;
}

/* SUPPRIMER LES MARGES DES GROUPES DE CHAMPS */
.delivery-field-group {
    margin: 0 !important;
    padding: 0 !important;
}

.delivery-tabs-content {
    margin: 0 !important;
    padding: 0 !important;
}

.time-slots-container {
    margin: 0 !important;
    padding: 0 !important;
}

.time-slots-grid {
    margin: 0 !important;
    padding: 0 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .delivery-date-input,
    .delivery-time-input {
        font-size: 16px !important;
        width: 90% !important;
    }
    
    .calendar-day {
        font-size: 14px !important;
        padding: 8px !important;
        height: 40px !important;
    }
    
    .delivery-card-title {
        font-size: 16px !important;
    }
    
    .delivery-tab-btn {
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
    
    .delivery-card-header {
        padding: 8px !important;
    }
    
    .delivery-card-body {
        padding: 8px !important;
    }
}

@media (max-width: 576px) {
    .calendar-day {
        font-size: 12px !important;
        padding: 6px !important;
        height: 35px !important;
    }
    
    .delivery-card-header {
        padding: 6px !important;
    }
    
    .delivery-card-body {
        padding: 6px !important;
    }
}





/* VERSION MOBILE */
@media (max-width: 768px) {
    /* DÉSACTIVER COMPLÈTEMENT LA VERSION ORDINATEUR */
    .delivery-options-container .calendar-container,
    .delivery-options-container .time-slots-container {
        display: none !important;
        pointer-events: none !important;
    }
    
    .delivery-options-container .delivery-date-input,
    .delivery-options-container .delivery-time-input {
        pointer-events: auto !important; /* Réactiver pour mobile */
    }
    
    /* Styles pour les sélecteurs mobiles */
    .mobile-date-selector,
    .mobile-time-selector {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-selector-container {
        background: white;
        width: 90%;
        max-width: 400px;
        border-radius: 10px;
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mobile-selector-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-selector-title {
        font-size: 18px;
        font-weight: bold;
        color: #2d3748;
        margin: 0;
    }
    
    .mobile-selector-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #718096;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-date-list,
    .mobile-time-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .mobile-date-item,
    .mobile-time-item {
        padding: 12px 15px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        background: white;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .mobile-date-item:hover,
    .mobile-time-item:hover {
        border-color: #28a745;
        background: #f8fff9;
    }
    
    .mobile-date-item.selected,
    .mobile-time-item.selected {
        border-color: #28a745;
        background: #28a745;
        color: white;
        font-weight: bold;
    }
    
    .mobile-date-item.unavailable,
    .mobile-time-item.unavailable {
        background: #f8f9fa;
        color: #ccc;
        cursor: not-allowed;
        border-color: #e2e8f0;
    }
    
    .mobile-date-item.past-date,
    .mobile-time-item.past-time {
        background: #ffe6e6;
        color: #dc3545;
        cursor: not-allowed;
        border-color: #dc3545;
        text-decoration: line-through;
    }
    
    .mobile-time-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .mobile-time-value {
        font-weight: bold;
        font-size: 16px;
    }
    
    .mobile-time-availability {
        font-size: 12px;
        color: #28a745;
        font-weight: bold;
    }
    
    .mobile-time-item.unavailable .mobile-time-availability,
    .mobile-time-item.past-time .mobile-time-availability {
        color: #dc3545;
    }
    
    .mobile-time-item.selected .mobile-time-availability {
        color: white;
    }
    
    /* Ajustements pour les inputs sur mobile */
    .delivery-date-input,
    .delivery-time-input {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
    }
}


/* CSS pour désactiver globalement sur mobile */
@media (max-width: 768px) {
    .delivery-options-container .calendar-container,
    .delivery-options-container .time-slots-container,
    .delivery-options-container .calendar-header,
    .delivery-options-container .calendar-grid,
    .delivery-options-container .calendar-nav-btn,
    .delivery-options-container .calendar-day {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important;
    }
    
    /* Réactiver seulement les inputs pour la version mobile */
    .delivery-options-container .delivery-date-input,
    .delivery-options-container .delivery-time-input {
        display: block !important;
        visibility: visible !important;
        pointer-events: auto !important;
        opacity: 1 !important;
    }
}




/* Styles pour les dates et heures indisponibles */
        .calendar-day.unavailable-date {
            background-color: #f5f5f5 !important;
            color: #999 !important;
            cursor: not-allowed !important;
        }
        
        .calendar-day.past-date {
            background-color: #ffe6e6 !important;
            color: #cc0000 !important;
            cursor: not-allowed !important;
        }
        
        /* CURSEUR SUR LES CRÉNEAUX DISPONIBLES */
        .time-slot:not(.unavailable):not(.past-time) {
            cursor: pointer !important;
        }
        
        .time-slot.unavailable,
        .time-slot.past-time {
            background-color: #ffe6e6 !important;
            color: #cc0000 !important;
            cursor: not-allowed !important;
            border-color: #ff9999 !important;
        }
        
        /* DÉSACTIVER L\'INPUT QUAND LES CRÉNEAUX SONT VISIBLES */
        .slots-visible ~ .time-input-container .delivery-time-input,
        .delivery-time-input.slots-open {
            pointer-events: none !important;
            cursor: default !important;
            background-color: #f8f9fa !important;
        }
        
        /* POUR QUE LES CRÉNEAUX SOIENT AU-DESSUS */
        .time-slots-container.slots-visible {
            position: relative;
            z-index: 100 !important;
        }
        
        .mobile-date-item.past-date,
        .mobile-date-item.unavailable {
            background-color: #ffe6e6 !important;
            color: #cc0000 !important;
            cursor: not-allowed !important;
        }
        
        .mobile-time-item.unavailable,
        .mobile-time-item.past-time {
            background-color: #ffe6e6 !important;
            color: #cc0000 !important;
            cursor: not-allowed !important;
        }
        
        .mobile-time-item:not(.unavailable):not(.past-time) {
            cursor: pointer !important;
        }
    }
    
    /* Styles pour desktop */
    @media (min-width: 769px) {
        /* CURSEUR SUR LES CRÉNEAUX DISPONIBLES */
        .time-slot:not(.unavailable):not(.past-time) {
            cursor: pointer !important;
        }
        
        .time-slot:not(.unavailable):not(.past-time):hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
            background-color: #f0f8ff !important;
        }
        
        .time-slot.unavailable,
        .time-slot.past-time {
            background-color: #ffe6e6 !important;
            color: #cc0000 !important;
            cursor: not-allowed !important;
            border-color: #ff9999 !important;
        }
        
        /* DÉSACTIVER L\'INPUT QUAND LES CRÉNEAUX SONT VISIBLES */
        .slots-visible + .time-input-container .delivery-time-input,
        .delivery-time-input.slots-open {
            pointer-events: none !important;
            cursor: default !important;
            background-color: #f8f9fa !important;
        }
        
        /* POUR QUE LES CRÉNEAUX SOIENT AU-DESSUS */
        .time-slots-container.slots-visible {
            position: relative;
            z-index: 100 !important;
        }
        
        .calendar-day.unavailable-date {
            background-color: #f5f5f5 !important;
            color: #999 !important;
            cursor: not-allowed !important;
        }
        
        .calendar-day.past-date {
            background-color: #ffe6e6 !important;
            color: #cc0000 !important;
            cursor: not-allowed !important;
        }
        
        /* CURSEUR POUR LES DATES DISPONIBLES */
        .calendar-day:not(.unavailable-date):not(.other-month):not(.past-date) {
            cursor: pointer !important;
        }
        
        .calendar-day:not(.unavailable-date):not(.other-month):not(.past-date):hover {
            background-color: #f0f8ff !important;
        }
        
        .calendar-day.selected {
            background-color: #007cba !important;
            color: white !important;
            cursor: default !important;
        }
    }