body {
    margin: 0;
    width: 100%;
    height: 100vh;
    /*display: flex;*/
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fa;
}



.context-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.context-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

.context-menu li:hover {
    background-color: #f8f9fa;
}

.table {
    --bs-table-bg: none;
}

#fileTable tbody tr:hover {
    background-color: #f1f1f1 !important;
}

#fileTable tbody tr.selected {
    background-color: #f1f1f1 !important;
}

:root {
    --dt-row-selected: none;
    --dt-row-selected-text: none;
}


.file-name-button {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    font-size: inherit;
    text-align: left;
    display: flex;
    align-items: center;
}

.file-name-button:hover {
    color: #0056b3;
}

.file-icon {
    margin-right: 8px;
    vertical-align: middle;
}

#fileTable th:nth-child(2),
#fileTable td:nth-child(2) {
    width: 600px;
    max-width: 600px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#fileTable td .file-name-button {
    display: contents;
}





nav {
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.logo-menu {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #011b3f;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.page-link {
    color: #011b3f !important;
}

.active .page-link {
    background-color: #011b3f !important;
    border-color: #011b3f !important;
    color: white !important;
}


.table.dataTable th.dt-type-numeric {
    text-align: left !important;
}

.table.dataTable td.dt-type-numeric {
    text-align: left !important;
}