#booking-package .sun {
    
}

#booking-package .mon {
    
}

#booking-package .tue {
    
}

#booking-package .wed {
    
}

#booking-package .thu {
    
}

#booking-package .fri {
    
}

#booking-package .sat {
    
}

#booking-package .nationalHoliday {
    
}

#booking-package_calendarPage .dateField {
    /*
    background-color: #0f9b79;
    color: #fff;
    font-weight: 400;
    */
   
}
.available_day{
        background: #8E6B69 !important;
        color:#fff !important;
}



#booking-package_calendarPage .startDateOfFullRoom {
    background-image: repeating-linear-gradient(270deg, #ff8989 0px 50%, transparent 0% 100%);
  
}

#booking-package_calendarPage .dateOfFullRoom {
   
    background: #ff8989;
  
}

#booking-package_calendarPage .endDateOfFullRoom {
   
    background-image: repeating-linear-gradient(90deg, #ff8989 0px 50%, transparent 0% 100%);
   
}










/* Grille des services 
#booking-package_servicePage .list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.selectable_service_slot {
    background-color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #252525;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.selectable_service_slot span {
    font-size: 14px;
    font-weight: 500;
    color: #3a2f2f;
}

.selectable_service_slot:hover {
    background-color: #faf7f5;
    border-color: #8E6B69;
}

.selectable_service_slot.selected,
.selectable_service_slot:has(input:checked) {
    background-color: #E3BC9A;
    border-color: #000000;
}*/













/* ============================= */
/* VARIABLES COULEURS */
/* ============================= */
:root {
    --primary: #8E6B69;
    --secondary: #E3BC9A;
    --light-bg: #faf7f5;
    --border-soft: #e0d8d2;
    --text-dark: #3a2f2f;
}

/* ============================= */
/* CONTENEUR GLOBAL */
/* ============================= */
#booking-package {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: transparent;
}

/* ============================= */
/* SERVICES */
/* ============================= */

.selectable_service_slot {
    background-color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--border-soft);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.selectable_service_slot span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.selectable_service_slot:hover {
    background-color: var(--light-bg);
    border-color: var(--primary);
}

.selectable_service_slot.selected,
.selectable_service_slot:has(input:checked) {
    background-color: var(--secondary);
    border-color: var(--primary);
}

/* ============================= */
/* FORMULAIRE */
/* ============================= */
#booking-package_inputFormPanel {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    max-width: 720px;
    margin: 30px auto;
}

/* Titre */
#booking-package_inputFormPanel .title_in_form {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Lignes */
#booking-package_inputFormPanel .row {
    border: none !important;
}

/* Labels */
#booking-package_inputFormPanel .name {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 6px;
}

/* Inputs */
#booking-package_inputFormPanel input.form_text,
#booking-package_inputFormPanel textarea.form_textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background-color: var(--light-bg);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

#booking-package_inputFormPanel input.form_text:focus,
#booking-package_inputFormPanel textarea.form_textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
}

/* Message */
#booking-package_inputFormPanel textarea.form_textarea {
    min-height: 110px;
    resize: vertical;
}

/* ============================= */
/* RÉCAP RÉSERVATION */
/* ============================= */
#booking-package_inputFormPanel .value {
    font-size: 14px;
    color: var(--text-dark);
}

#booking-package_inputFormPanel .addedService {
    background-color: #252525;
    color:#fff;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 6px;
}

/* ============================= */
/* BOUTON RÉSERVER */
/* ============================= */
.book_now_button {
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.book_now_button:hover {
    background-color: #6f504f;
}

/* ============================= */
/* BOUTON RETOUR */
/* ============================= */
.return_form_button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 600px) {
    #booking-package_inputFormPanel {
        padding: 18px;
    }
}
