.app-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 13px;
    margin: 0 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background .12s ease, border-color .12s ease, color .12s ease, box-shadow .12s ease;
}

.app-filter-toggle:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #0f172a;
}

.app-filter-toggle.is-open {
    border-color: #16a34a;
    background: #f0fdf4;
    color: #166534;
}

.app-filter-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .16);
}

.app-filter-toggle__chev {
    font-size: 11px;
    transition: transform .12s ease;
}

.app-filter-toggle.is-open .app-filter-toggle__chev {
    transform: rotate(180deg);
}

.app-filter-toggle__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 800;
}

.app-filter-collapsed {
    display: none !important;
}

.grid-view.app-grid-filters-collapsed thead tr.filters {
    display: none !important;
}

.app-filter-panel {
    transition: opacity .12s ease;
}

