/* Calendario Flatpickr moderno */
.flatpickr-calendar.inline {
    width: 100%;
}

.flatpickr-rContainer {
    width: 100%;
}

#slots-container {
    margin-top: 24px;
}

.widget-booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: sans-serif;
}

.widget-booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.widget-booking-form label {
    font-weight: 600;
    margin-bottom: 4px;
}

.widget-booking-form input,
.widget-booking-form select {
    padding: 6px 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
}

.widget-booking-form input:focus,
.widget-booking-form select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.widget-booking-form .submit-btn {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.widget-booking-form .submit-btn:hover {
    background-color: #0056b3;
}