/* Option 2: Tabulator styles - Blue (#2196F3) */
.tabulator {
    font-size: 13px;
}

.tabulator .tabulator-header {
    background-color: #2196F3;
    color: #000;
}

.tabulator .tabulator-header .tabulator-col {
    background-color: #2196F3;
    color: #000;
    border-right: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
    color: #000;
    font-weight: 600;
    padding: 8px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
    padding: 8px;
    min-height: 40px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 10px;
    color: #000;
    background: white;
    width: 100%;
    font-size: 13px;
    min-width: 100px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter input:focus {
    outline: none;
    border-color: #2196F3;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
    background-color: rgba(33, 150, 243, 0.7);
}

.tabulator .tabulator-header .tabulator-col.tabulator-sorted {
    background-color: rgba(33, 150, 243, 0.8);
}

.toggle-filters-btn {
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.toggle-filters-btn:hover {
    background: #1976D2;
}

