.lbs-booking-form {
    display: grid;
    gap: 15px;
    /* max-width: 500px; */
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.lbs-booking-form p {
    display: flex;
    flex-direction: column;
}

.lbs-booking-form input,
.lbs-booking-form select,
.lbs-booking-form button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.lbs-booking-form button {
    background: #6772e5;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lbs-booking-form button:hover {
    background: #5469d4;
}

.lbs-booking-success, .lbs-booking-cancel {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.lbs-booking-success { color: #28a745; }
.lbs-booking-cancel { color: #dc3545; }

.lbs-booking-form .flatpickr-disabled {
    background: #f8d7da !important;
    color: #721c24 !important;
    cursor: not-allowed !important;
}

@media screen and (max-width: 600px) {
    .lbs-booking-form {
        padding: 15px;
        margin: 10px;
    }
}
