/* Stili base per il modale */
#modale-candidatura-overlay {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}
#modale-candidatura {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 600px;
    background: #fff;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 1001;
    border-radius: 5px;
}
#modale-candidatura .chiudi-modale {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
}
