/* ----------------------------------------------------
   BOOKING PAGE — MAIN CONTAINER
---------------------------------------------------- */
.cbs-calendar {
    max-width: 1000px;
    width: 100%;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-family: "Lato", sans-serif;
    color: #7A7A7A;
}

/* Instructions above date picker */
.cbs-calendar:before {
    content: "Select a date, then choose a time below.";
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #7A7A7A;
    margin-bottom: 25px;
}

/* Headings inside calendar */
.cbs-calendar h3 {
    font-size: 24px;
    font-weight: 600;
    color: #7A7A7A;
    margin-bottom: 15px;
}

/* ----------------------------------------------------
   DATE PICKER
---------------------------------------------------- */
#cbs-date-picker {
    display: block;
    padding: 12px 14px;
    border: 2px solid #87B3A3;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    color: #7A7A7A;
    width: 100%;
    max-width: 260px;
    margin-bottom: 20px;
}

#cbs-date-picker:focus {
    border-color: #AAC4BA;
    outline: none;
}

/* ----------------------------------------------------
   SHOW AVAILABLE TIMES BUTTON
---------------------------------------------------- */
#cbs-load-slots {
    display: block;
    margin-top: 10px;
    margin-bottom: 30px;
    background-color: #87B3A3;
    color: #ffffff;
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Lato", sans-serif;
    transition: background-color 0.2s ease;
}

#cbs-load-slots:hover {
    background-color: #AAC4BA;
}

/* ----------------------------------------------------
   SLOTS CONTAINER
---------------------------------------------------- */
.cbs-slots {
    margin-top: 25px;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* Available Times header */
.cbs-slots h3 {
    font-size: 22px;
    font-weight: 600;
    color: #7A7A7A;
    margin-bottom: 15px;
    font-family: "Lato", sans-serif;
}

/* ----------------------------------------------------
   SLOT BUTTONS
---------------------------------------------------- */
.cbs-slot-btn {
    display: inline-block;
    background: #F4F7F6;
    border: 2px solid #87B3A3;
    color: #7A7A7A;
    padding: 12px 18px;
    margin: 8px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Lato", sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Hover */
.cbs-slot-btn:hover {
    background: #AAC4BA;
    color: #ffffff;
    border-color: #87B3A3;
}

/* Selected */
.cbs-slot-btn.cbs-selected {
    background: #87B3A3;
    color: #ffffff;
    border-color: #6A9487;
    transform: scale(1.05);
}

/* Disabled */
.cbs-slot-btn.cbs-disabled {
    background: #f1f1f1;
    border-color: #cccccc;
    color: #aaaaaa;
    cursor: not-allowed;
}

/* ----------------------------------------------------
   CLIENT INFO SECTION
---------------------------------------------------- */
.cbs-client-info {
    margin-top: 35px;
    padding: 25px;
    background: #F9FBFA;
    border: 2px solid #E2E8E5;
    border-radius: 12px;
    font-family: "Lato", sans-serif;
    color: #7A7A7A;
    white-space: normal !important; /* prevents layout collapse */
}

.cbs-client-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7A7A7A;
}

.cbs-client-info label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #7A7A7A;
}

.cbs-client-info input[type="text"],
.cbs-client-info input[type="email"],
.cbs-client-info input[type="tel"] {
    width: 100%;
    max-width: 400px;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 2px solid #87B3A3;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    color: #7A7A7A;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.cbs-client-info input:focus {
    border-color: #AAC4BA;
    outline: none;
}

/* ----------------------------------------------------
   CONTINUE BUTTON
---------------------------------------------------- */
#cbs-continue {
    display: block;
    width: 100%;
    margin-top: 35px;
    background-color: #87B3A3;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Lato", sans-serif;
    transition: background-color 0.2s ease;
}

#cbs-continue:hover {
    background-color: #AAC4BA;
}

#cbs-continue:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
