/* make the header sticky*/
.fi-ta-table thead {
    position: sticky !important;
    top: 0;
    z-index: 9;
}

/* opacity does not looks good in dark mode, so insert the corresponding bg color here */
.fi-ta-table thead :is(:where(.dark) .dark\:bg-white\/5){
    background-color: rgb(36 36 39);
}

/* set the height of content (table) */
.fi-ta-content {
    max-height: calc(100vh - 20rem);
    position: relative;
}

/* fix filters and columns modal */
.fi-dropdown-panel{
    z-index: 40 !important;
}

.fi-main {
    max-width: 100% !important;
}

