1table.dataTable.fixedHeader-floating,
2table.dataTable.fixedHeader-locked {
3  background-color: white;
4  margin-top: 0 !important;
5  margin-bottom: 0 !important;
6}
7
8table.dataTable.fixedHeader-locked {
9  position: absolute !important;
10}
11
12@media print {
13  table.fixedHeader-floating {
14    display: none;
15  }
16}
17html[data-bs-theme=dark] table.dataTable.fixedHeader-floating,
18html[data-bs-theme=dark] table.dataTable.fixedHeader-locked {
19  background-color: var(--bs-body-bg);
20}
21