/* Закрепление заголовка таблицы */
.filament-table thead {
    position: sticky;
    top: 0;
    background-color: white; /* Цвет фона заголовка */
    z-index: 2; /* Убедитесь, что заголовок находится над содержимым */
}

/* Убедитесь, что таблица занимает всю доступную высоту */
.filament-table {
    max-height: 100vh; /* Ограничение высоты таблицы */
    overflow-y: auto; /* Включение вертикальной прокрутки */
}

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

.dark .fi-ta-table thead tr {
    background-color: black !important
}

.fi-ta-content {
    max-height: 790px;
    position: relative;
}
/* filters and columns modal*/
.fi-dropdown-panel{
    z-index: 2 !important;
}

/*stick row with individual search and add border to it*/
.fi-ta-row:not(:has(.fi-ta-group-header),.record-row,.fi-ta-summary-row,.fi-ta-summary-header-row){
    top: 48.5px;
    z-index: 1;
}
.fi-ta-row:not(:has(.fi-ta-group-header),.record-row,.fi-ta-summary-row,.fi-ta-summary-header-row)::after{
    position: absolute;
    top: 0.5px;
    left: 0;
    width: 100%;
    height: calc(100% - 1px);
    z-index: 1;
}