 .creneaux_input {
        cursor: pointer;
        background-color: #f9f9f9;
    }
    .liste_creneaux_dropdown {
      position: absolute;
      background: white;
      border: 1px solid #ddd;
      border-radius: 4px;
      max-height: 200px;
      overflow-y: auto;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      width: 550px;
      display: flex;
      gap: 15px;
    }
    .indisponible_creneaux {
  opacity: 0.5;
  background: #eee;
  pointer-events: none;
}
    .creneaux-groupe.midi-groupe {
      border-bottom: 1px solid #eee;
      width: 100%;
      display: flex;
      gap: 10px;
      flex-direction: column;
    }
    .creneaux-all {
      display: flex;
      flex-wrap: wrap;
    }
    .creneau-option {
      flex: 0 0 25%;
      width: 25%;
    }
    .creneaux-groupe.soir-groupe {
      width: 100%;
      display: flex;
      flex-direction: column;
    }
    .creneaux-groupe:last-child {
        border-bottom: none;
    }
    .groupe-titre {
        padding: 8px 12px;
        background-color: #f5f5f5;
        font-weight: bold;
        color: #333;
        border-bottom: 1px solid #ddd;
    }
    .creneau-option {
        padding: 10px 12px;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
    }
    .creneau-option:hover {
        background-color: #e9f7fe;
    }
    .creneau-option:last-child {
        border-bottom: none;
    }
    .midi-groupe .groupe-titre {
        background-color: #fff3cd;
        color: #856404;
    }
    .soir-groupe .groupe-titre {
        background-color: #d1ecf1;
        color: #0c5460;
    }
    .aucun-creneau {
        padding: 15px;
        text-align: center;
        color: #6c757d;
        font-style: italic;
    }
    .date_ {
        position: relative;
    }
    .ui-datepicker-title {
      display: flex;
      gap: 10px;
    }
    .date-disabled {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
    position: relative;
}

.ui-datepicker .date-disabled .ui-state-default {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
}

/* Tooltip stylisé */
.date-disabled {
    position: relative;
}

.date-disabled:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.date-disabled:hover::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #dc3545;
    margin-bottom: -4px;
    z-index: 1000;
}
.date-disabled{
    pointer-events: all !important;
}