/* --- STILI DI BASE E COLORI --- */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* Azzurro molto chiaro e rilassante */
    color: #333;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.contenitore {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- STILI PER I TESTI E I BOX --- */
.box-budget {
    font-size: 24px;
    font-weight: bold;
    color: #2e8b57; /* Verde rassicurante */
    margin-bottom: 20px;
}

.box-situazione {
    background-color: #fffacd; /* Giallo pastello per evidenziare */
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffd700;
}

#messaggio-feedback {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

/* --- STILI PER PULSANTI E CASELLE DI TESTO --- */
button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
}

.btn-voce {
    background-color: #87cefa; /* Azzurro cielo */
}

.btn-controllo {
    background-color: #32cd32; /* Verde acceso per l'azione principale */
    color: white;
    font-weight: bold;
}

input[type="number"], input[type="text"] {
    font-size: 24px;
    padding: 10px;
    width: 80%;
    max-width: 250px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
}

/* --- STILI PER LA BARRA DI AVANZAMENTO --- */
progress {
    width: 100%;
    height: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
}

progress::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 10px;
}

progress::-webkit-progress-value {
    background-color: #32cd32;
    border-radius: 10px;
}

/* --- STILI PER LA TABELLA FINALE --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #87cefa;
}