/* Wrapper harus bisa scroll */
.fi-ta-content {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

/* Sticky header */
.fi-ta-table thead tr {
    position: sticky;
    top: 0;
    z-index: 5; 
    background: white;
}

/* Sticky kolom kiri (No SPDD) */
.sticky-col {
    position: sticky;
    left: 0;
    z-index: 2; 
    /*background: white;*/
}
tr:nth-child(even) .sticky-col {
    background-color: #fafafa; /* abu-abu muda untuk baris genap */
}
 
tr:nth-child(odd) .sticky-col {
    background-color: #ffffff; /* putih untuk baris ganjil */
}
.dark .fi-ta-table thead tr {
    background-color:#1e2c2e; 
}
.dark .sticky-col {
    background-color: #1e2c2e; 
}
.dark tr:nth-child(odd) .sticky-col {
    background-color: #1e2c2e; 
}

/* Baris Genap di Dark Mode */
.dark tr:nth-child(even) .sticky-col {
    background-color: #293739;
}

 /*Action column (Approve/Reject) */
/*.fi-ta-actions-cell {*/
/*    position: sticky;*/
/*    right: 0;*/
/*    z-index: 2;*/
/*}*/

.fi-modal-window, 
.fi-modal-backdrop {
    z-index: 9999;
}