body {
    background: linear-gradient(to right, rgba(0, 165, 231, 0.2), rgba(0, 97, 209, 0.1));
}

.title-register-div {
    border-bottom: 6px solid #11437A;
    background-color: #00A5E7;
    padding-top: 26px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  
}

#title-register {
    font-weight: 600;
    flex-grow: 1; 
    font-family: 'Arial', sans-serif; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    color: white;
}

#registrati {
    font-weight: 600;
    font-size: 1.1rem;
}

label, .seleziona_modulo {
    color: #11437A;
}

select {
    height: 38px;
    width: 100%;
    border: 1px solid #ccc;
    color: #11437A;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }

.error {
    color: red;
}


.custom-file-label {
    white-space: nowrap;
    overflow: hidden;  
    text-overflow: ellipsis;
    max-width: 100%; 
}



/* creazione select per scelta corsi università */
.select-checkbox-container {
    position: relative;
    width: 300px;
    margin-bottom: 10px;
}

.select-checkbox {
    width: 100%;
    padding: 8px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
}

.select-checkbox-container.open .select-options {
    display: block;
}

.select-options div:hover {
    background-color: #f0f0f0; 
}

.select-checkbox-container:not(:last-child) {
    padding-right: 0.5rem !important;
}

.chevron-select-icon {
    font-size: 0.7rem;
}


/*fine select corsi università*/


/* comuni autocomplete */
#results {
    position: absolute;
    top: 100%;  
    left: 0;
    right: 0;
    z-index: 10;
    background-color: white; 
    border: 1px solid #ccc;  
    max-height: 200px; 
    overflow-y: auto;
}

.result-item {
    padding: 8px;
    cursor: pointer;
}

.result-item:hover {
    background-color: #f0f0f0;
}

/* creazione select per scelta corsi attivi */
.select-checkbox-container {
    position: relative;
    margin-bottom: 10px;
    max-width: 100% !important;
    padding: 0 !important;
}

.select-checkbox {
    width: 100%;
    padding: 6px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
}

.select-checkbox-container.open .select-options {
    display: block;
}

.select-options div:hover {
    background-color: #f0f0f0; 
}


/*fine select corsi attivi*/
