/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-conferma       { background-color: #e74c3c; }
.btn-conferma:hover { background-color: #c0392b; }

.btn-annulla        { background-color: #95a5a6; }
.btn-annulla:hover  { background-color: #7f8c8d; }
