/* Sticky column titles while scrolling backlog tables. */
.fi-ta-sticky-header .fi-ta-content-ctn {
    max-height: calc(100dvh - 14rem);
    overflow: auto;
    position: relative;
}

.fi-ta-sticky-header .fi-ta-table > thead {
    position: sticky;
    top: 0;
    z-index: 20;
}

.fi-ta-sticky-header .fi-ta-table > thead .fi-ta-header-cell,
.fi-ta-sticky-header .fi-ta-table > thead .fi-ta-selection-cell,
.fi-ta-sticky-header .fi-ta-table > thead .fi-ta-header-group-cell {
    background-color: rgb(255 255 255);
    box-shadow: inset 0 -1px 0 rgb(229 231 235);
}

.dark .fi-ta-sticky-header .fi-ta-table > thead .fi-ta-header-cell,
.dark .fi-ta-sticky-header .fi-ta-table > thead .fi-ta-selection-cell,
.dark .fi-ta-sticky-header .fi-ta-table > thead .fi-ta-header-group-cell {
    background-color: rgb(17 24 39);
    box-shadow: inset 0 -1px 0 rgb(255 255 255 / 0.1);
}
