#datatable_container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
    opacity: 0; /* Invisibile all’inizio per l’animazione */
    transform: translateY(-20px); /* Spostamento per animazione a cascata */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Tempo e tipo di animazione */
}


#datatable_container.active {
    opacity: 1;
    transform: translateY(0);
}

.close-btn:hover {
  background-color: darkred;
}