/* ==========================================
   MODALE GENERICE
========================================== */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 60;
}

.modal-backdrop.open {
    display: flex;
}

.modal {
    width: 480px;
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-hard);
}
