#map {
    height: 400px;
    display: none; /* La mappa è nascosta di default */
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 800;
}




#datatable_container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
}

table.dataTable {
    width: 100%;
    border-collapse: collapse;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.overlay-content {
    margin-right: auto;
    margin-left: auto;
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    animation: cascade 0.5s ease-in-out;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: auto;
}

.overlay-content table {
    width: 100%;
    table-layout: auto;
}

@keyframes cascade {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay-content th,
.overlay-content td {
    white-space: nowrap;
}

.overlay-content th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
}

.overlay-content td {
    overflow-wrap: break-word;
}

.form-container {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

#service {
    border: 1px solid red; /* Aggiungi un bordo per vedere il select */
}

fieldset.scheduler-border {
    border: 1px groove #ddd ! important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
}