/* Apply JetBrains Mono to Tabulator, but not to icons */
.tabulator,
.tabulator * {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}

/* Restore Bootstrap Icons font */
.tabulator .bi {
    font-family: "bootstrap-icons" !important;
}

/* Simple vertical centering for all headers */
.tabulator .tabulator-col {
    vertical-align: middle;
}

/* Or using flexbox (more reliable) - previously commented out empty rule removed */

.tabulator .tabulator-col-content {
    margin: auto 0;
}