body {
    min-height: 100vh;
    background-color: #FFFFFF;
}

#loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-color: #fff;
    z-index: 2000;
}

#loading-image {
    z-index: 100;
    color: #000000;
    text-align: center;
}

table thead tr th,
table thead tr td {
    text-align: center;
    vertical-align: middle!important;
    color: #FFFFFF!important;
    background-color: #0E0C28!important;
    padding: 14px!important;
}

table tbody tr th,
table tbody tr td {
    padding: 14px!important;
}

.div_erreur_404 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    width: 100%;
    height: 100vh;
}

.div_error_404_text {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    animation: div_error_404_text_animation 2s infinite;
}

.box_shadow {
    box-shadow: 1px 1px 5px black;
    border-radius: 0.5rem;
    overflow-x: auto;
    padding: 1rem;
}

h4.sticky-top,
thead.sticky-top {
    z-index: 10!important;
}

@keyframes div_error_404_text_animation {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}


@media print {
    table thead tr th {
        color: #000000!important;
        background-color: #FFFFFF!important;
    }
}