.booking-fields {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f8f8f8;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    background: #f0f0f0;
}

.time-slot.selected {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.booking-fields ~ .quantity,
.booking-fields .quantity {
    display: none !important;
}
