/* Wrapper */
.csb-booking-form {
    width: 75%;
    max-width: 100%;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;           /* center form */
}

/* Headings */
.csb-booking-form h2,
.csb-booking-form h3 {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

/* Inputs & Selects */
.csb-booking-form input[type="text"],
.csb-booking-form input[type="tel"],
.csb-booking-form input[type="number"],
.csb-booking-form input[type="date"],
.csb-booking-form input[type="time"],
.csb-booking-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Add-ons */
.csb-booking-form label {
    display: block;
    margin-bottom: 8px;
    color: black;
}

/* Submit Button */
.csb-booking-form button {
    width: 100%;               /* button width */
    padding: 12px;
    background: #0a7cff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    display: block;
    margin: 20px auto 0;      /* center button */
}

.csb-booking-form button:hover {
    background: #055fd1;
}

/* Total Amount */
.csb-booking-form p {
    font-size: 18px;
    margin: 15px 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .csb-booking-form {
        width: 100%;
    }

    .csb-booking-form button {
        width: 100%;          /* full width button on mobile */
    }
}


