 .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;
  flex: 0 0 25%;
  width: 25%;
}
/*.test_pre{
    display: none!important;
}*/
.test_pre{
    display: flex;
    justify-content: space-between;
}
    .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,.indisponible_creneaux {
        padding: 10px 12px;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
    }
    .creneau-option:hover {
      background-color: #e9f7fe !important;
      color: #000 !important;
    }
    .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;
}

.success_ {
  padding: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  width: fit-content;
}





/* Style général du formulaire */
.reservation-form {
    
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.all_reservation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mes_input_reservation {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Style pour les sections de date et créneaux */


.date_label label {
  display: block;
  font-weight: 600;
  color: #000 !important;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date_input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.date_input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.date_input::placeholder {
    color: #95a5a6;
    opacity: 0.7;
}

/* Style spécifique pour le champ créneaux */
.creneaux_input {
  cursor: pointer !important;
  background: #f8f9fa;
}

.creneaux_input:hover {
    background: #e9ecef;
}

/* Dropdown des créneaux */
.liste_creneaux_dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
}

.liste_creneaux_dropdown div {
  padding: 5px 5px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
  transition: all 0.2s ease;
  text-align: center;
}

.liste_creneaux_dropdown div:hover {
  background: #F79277;
  color: white;
}

.liste_creneaux_dropdown div:last-child {
    border-bottom: none;
}

/* Section informations client */
.iformation_client {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.les_nom_prenom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.les_nom, .les_prenom, .les_email {
    position: relative;
}

.les_nom label, .les_prenom .date_label, .les_email .date_label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.les_nom input, .les_prenom input, .les_email input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.les_nom input:focus, .les_prenom input:focus, .les_email input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Style pour le champ téléphone */
.les_email input[type="number"] {
    -moz-appearance: textfield;
}

.les_email input[type="number"]::-webkit-outer-spin-button,
.les_email input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Zone de texte message */
.les_nom textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
    box-sizing: border-box;
}

.les_nom textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Bouton de soumission */
input[type="submit"] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(255, 107, 107, 0.3);
}

input[type="submit"]:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reservation-form {
        padding: 20px;
        margin: 15px;
    }
    
    .all_reservation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .les_nom_prenom {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mes_input_reservation,
    .iformation_client {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    
    .conntenue_formulaire_div .e-con-inner{
        margin: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: ;
        min-width: 100% !important;
    }
    .reservation-form {
        padding: 15px;
    }
    
    .mes_input_reservation,
    .iformation_client {
        padding: 15px;
    }
    
    input[type="submit"] {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Animation pour les champs */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mes_input_reservation,
.iformation_client {
    animation: fadeIn 0.5s ease-out;
}

/* Style pour le champ datepicker */
.ui-datepicker {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e0e0e0 !important;
}

.ui-datepicker-header {
  
    color: white !important;
    border-radius: 12px 12px 0 0 !important;
}
.contenue_inpt_client input {
  padding: 15px;
}
.les_message {
  width: 100%;
}
.ui-datepicker-calendar td a {
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.ui-datepicker-calendar td a:hover {
    background: #ff6b6b !important;
    color: white !important;
}

/* Validation */
.iformation_client input:invalid, .iformation_client textarea:invalid {
    border-color: #F79277;
}

.iformation_client input:valid, .iformation_client textarea:valid {
    border-color: #ccffcc;
}

/* Styles pour les états désactivés */
.date_input[readonly] {
    background-color: #f8f9fa;
    color: #6c757d;
}

.date_input[readonly]:hover {
    cursor: not-allowed;
}

.creneaux_, .select_date, .personne_maximum {
  width: 40%;
}
.mes_input_reservation {
  display: flex;
  gap: 5px;
  align-content: center;
  justify-content: center;
  position: relative;
}
.contenue_inpt_client {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  line-height: 50px;
}
.les_telephone, .les_email, .les_prenom, .les_nom {
  width: 45%;
}
.les_message {
  width: 92%;
}
@media (max-width: 768px) {
    .mes_input_reservation {
      position: static !important;
    }
    .date_ {
      position: relative;
    }
    .liste_creneaux_dropdown {
        width: 100%;
    }
    .creneau-option ,.indisponible_creneaux {
      flex: 0 0 50%;
      width: 50%;
    }
    .mes_input_reservation {
        flex-direction: column;
    }
    .creneaux_, .select_date, .personne_maximum{
        width: 100% !important;
    }
}
.bouton_valider {
  width: fit-content !important;
  background: #333 !important;
}
.formulaire_reservation_ {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 25px 10px;
}
.contenue_bt_reservation {
  display: flex;
  justify-content: center;
}
.information_client_titre{
    display: none;
  font-size: 30px !important;
}

.information_client {
  display: flex;
  flex-direction: column;
  align-items: center;
}