Prenotazione Appuntamenti /* Stili generali */ body { background-color: black; color: #58B0AA; font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; } .form-container { background: #222; padding: 20px; border-radius: 10px; width: 400px; text-align: center; } h2 { color: #58B0AA; } label { display: block; margin: 10px 0 5px; } input, select, button { width: 100%; padding: 10px; margin: 5px 0; border-radius: 5px; border: none; font-size: 16px; } input, select { background: #333; color: #58B0AA; } button { background: #58B0AA; color: black; font-weight: bold; cursor: pointer; transition: 0.3s; } button:hover { background: #46a196; } p#message { margin-top: 15px; font-weight: bold; }
document.getElementById("booking-form").addEventListener("submit", function(event) { event.preventDefault(); let tipo = document.getElementById("tipo").value; let data = document.getElementById("data").value; let ora = document.getElementById("ora").value; // Assegnazione operatore let operatore = ""; let colore = ""; if (["modello 730", "redditi persone fisiche", "isee"].includes(tipo)) { operatore = "Francesca"; colore = "giallo"; } else if (["naspi", "pensioni", "104"].includes(tipo)) { operatore = "Luca"; colore = "verde"; } else { operatore = "Federica"; colore = "rosso"; } document.getElementById("message").innerText = `Appuntamento confermato con ${operatore} (${colore}) il ${data} alle ${ora}.`; // Simulazione email di conferma e Google Calendar (da integrare con API) });