.custom-booking-form {
    max-width: 400px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.custom-booking-form input, 
.custom-booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.custom-booking-form input[type=submit] {
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}
.custom-booking-form input[type=submit]:hover {
    background: #005f8d;
}
