#loading-ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

button.dt-button,
div.dt-button,
a.dt-button,
input.dt-button {
    padding: 0.5em 2em !important;
    border: 1px solid rgb(7 127 11) !important;
    border-radius: 2px !important;
    color: white !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    background-color: rgba(0, 0, 0, 0.1);
    background: linear-gradient(
        to bottom,
        rgb(7 127 11) 0%,
        rgb(7 127 11) 100%
    ) !important;
}

.dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    font-size: small !important;
    padding-left: 10px !important;
    padding-top: 0.755em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: inherit !important;
    border: 1px solid rgb(7 127 11) !important;
    background-color: rgba(230, 230, 230, 0.1);
    color: white !important;
    background: linear-gradient(
        to bottom,
        rgb(7 127 11) 0%,
        rgb(7 127 11) 100%
    ) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: white !important;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.785); /* Semi-transparent black overlay */
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;   
    padding: 20px;
    border-radius: 5px;
}

.loading-text {
    margin-top: 20vh;
}

/* Center the spinner within the loading-content */
.spinner-border {
    display: block;
    margin: 0 auto;
}