/* Tabulator header column borders */
.tabulator-header .tabulator-col {
    border-right: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.tabulator-header .tabulator-col:last-child {
    border-right: none !important;
}

/* Hide header filter inputs when toggle is off */
.tabulator-header-filter-hidden div.tabulator-col-content input,
.tabulator-header-filter-hidden div.tabulator-col-content select {
    display: none !important;
}

/* Style column filter inputs with primary border */
.tabulator-col-content input,
.tabulator-col-content select {
    border: 1px solid var(--bs-primary) !important;
    border-radius: 0.25rem;
}

/* Tabulator data row column borders - only on larger screens */
@media (min-width: 768px) {
    .tabulator-row .tabulator-cell {
        border-right: 1px solid #dee2e6 !important;
    }

    .tabulator-row .tabulator-cell:last-child {
        border-right: none !important;
    }
}
