/* Tema sobrio e pulito per la pagina di prenotazione */
body {
    background: #f8fafc !important;
    color: #1e293b;
}

.booking-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.booking-form-card {
    padding: 2.5rem 2rem;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.glass-nav {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.hidden { display: none !important; }

/* Disattiva blob animati per un tema sobrio */
.bg-blobs {
    display: none !important;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .booking-container {
        margin: 1rem auto;
    }
    .booking-form-card {
        padding: 1.5rem 1rem;
    }
}
