/* Calendar Booking Plugin Styles */

#fbp-booking-form {
    max-width: 600px;
}

.fbp-field {
    margin-bottom: 12px;
}

/* Primary booking button */
#fbp_submit_btn.fbp-button {
    margin-top: 8px;

}

.fbp-field label {
    display: block;
    margin-bottom: 4px;
}

.fbp-field input[type="text"],
.fbp-field input[type="email"],
.fbp-field textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#fbp_time_slots {
    margin-top: 4px;
}

/* Time slot buttons */
.fbp-time-slot {
    display: inline-block;
    margin: 4px;
}

.fbp-time-slot input[type="radio"] {
    display: none;
}

.fbp-time-slot label {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #398702; /* match button green */
    border-radius: 4px;
    cursor: pointer;
    background: #f3f3f3;
}

/* When selected, keep the same green but make the border a bit bolder */
.fbp-time-slot input[type="radio"]:checked + label {
    border-color: #398702;
    border-width: 3px;
    font-weight: 600;
}

#fbp_form_message {
    font-size: 0.95em;
}
.fbp-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.fbp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.fbp-modal-content {
    position: relative;
    max-width: 540px;
    margin: 10% auto;
    background: #fff;
    padding: 20px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.fbp-modal-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

