/* Popup */
.popup {
    display: none; /* Masqué par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Contenu de la popup */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 80%;
    max-height: 700px;
    display: flex;
    flex-direction: column;
}



/* Bouton de fermeture */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f00;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}


.btn{
    border-radius: 0px!important;
}

input,select,button{
    border-radius: 0px!important;
}

/* Navbar transparente avec effet de flou */
.navbar {
    background-color: white !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
}

.container{
    background-color: white !important;
}

p{
    margin-top: 80px!important;
}



/* Overlay couvrant le tableau */
#tableLoadingOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Fond semi-transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* S'assurer qu'il passe au-dessus du tableau */
    display: none; /* Caché par défaut */
}



@media (max-width: 768px) {
    .table-container {
        overflow-x: auto; /* Permet le défilement horizontal */
       
    }

   

}


