.elementor-2070 .elementor-element.elementor-element-61d0d89{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-0a09695 *//* =========================================
   CSS MODULO PRENOTAZIONE CF7 - STILE COMPLETO
   ========================================= */

/* --- 1. CONTENITORE PRINCIPALE --- */
.eac-form-styled {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 800px; /* Larghezza massima */
    margin: 0 auto;   /* Centrato */
    font-family: inherit; /* Usa il font del sito */
    box-sizing: border-box;
}

/* Titoli */
.eac-form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}
.eac-form-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* --- 2. BOX INFO AZZURRO --- */
.eac-form-info-box {
    background-color: #f0f8ff; /* Sfondo chiarissimo */
    border-left: 5px solid #03B4FF; /* Linea colorata a sinistra */
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}
.eac-form-info-box h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #0290cc;
    font-weight: bold;
}
.eac-form-info-box p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #444;
}

/* --- 3. GRIGLIA FLUIDA (Righe e Colonne) --- */
.eac-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px -10px; /* Margine negativo per gestire spazi */
}
.eac-form-col {
    flex: 1; /* Divide lo spazio equamente */
    padding: 0 10px;
    min-width: 250px; /* Sotto questa larghezza va a capo */
}
.eac-form-full {
    width: 100%;
    margin-bottom: 20px;
}

/* --- 4. STILE CAMPI (INPUT & LABEL) --- */
.eac-form-styled label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

/* Stile comune per tutti i campi */
.eac-form-styled input[type="text"],
.eac-form-styled input[type="email"],
.eac-form-styled input[type="tel"],
.eac-form-styled input[type="date"],
.eac-form-styled input[type="number"],
.eac-form-styled textarea,
.eac-form-styled select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc; /* Bordo grigio classico */
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fafafa;
    color: #333; /* Testo scuro */
    transition: border 0.3s ease;
    min-height: 48px; /* Altezza minima uniforme */
}

/* --- FIX SPECIFICO PER LA TENDINA (SELECT) --- */
.eac-form-styled select {
    height: 48px !important;    /* Forza altezza uguale agli altri */
    line-height: 1.5;
    background-color: #fff !important; /* Sfondo bianco per risaltare */
    color: #333 !important;     /* Testo nero */
    cursor: pointer;
    appearance: auto;           /* Mantiene la freccetta del browser */
    -webkit-appearance: menulist;
}

/* Effetto Focus (quando clicchi sul campo) */
.eac-form-styled input:focus,
.eac-form-styled select:focus,
.eac-form-styled textarea:focus {
    border-color: #03B4FF; /* Bordo azzurro quando attivo */
    background: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(3, 180, 255, 0.2);
}

/* Piccole note sotto i campi */
.eac-form-styled small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 12px;
}

.eac-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0 30px 0;
}

/* --- 5. BOTTONE DI INVIO (Colore #03B4FF) --- */
.eac-submit-wrapper {
    text-align: center;
    margin-top: 30px;
}

.eac-submit-wrapper input[type="submit"] {
    background-color: #03B4FF !important; /* TUO COLORE AZZURRO */
    color: #fff !important;
    font-size: 18px;
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s;
    -webkit-appearance: none;
}

/* Hover del bottone */
.eac-submit-wrapper input[type="submit"]:hover {
    background-color: #0290cc !important; /* Leggermente più scuro */
    transform: translateY(-2px); /* Piccolo effetto sollevamento */
}

/* --- 6. MOBILE RESPONSIVE --- */
@media (max-width: 600px) {
    .eac-form-styled {
        padding: 20px 15px; /* Meno padding laterale su mobile */
    }
    .eac-form-row {
        display: block; /* Impila le colonne una sotto l'altra */
        margin: 0;
    }
    .eac-form-col {
        padding: 0;
        margin-bottom: 20px;
    }
    /* Forza larghezza piena bottone su mobile */
    .eac-submit-wrapper input[type="submit"] {
        width: 100%; 
    }
}/* End custom CSS */