/* =============================================
   Categories Index - Filter Tabs
   ============================================= */

.category-filter-tabs {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.filter-tab.active {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.filter-tab .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.25rem;
    padding: 0 0.4rem;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
}

.filter-tab.active .filter-count {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.15);
}

/* Responsive */
@media (max-width: 576px) {
    .filter-tab {
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }

    .filter-tab .filter-count {
        min-width: 1.25rem;
        height: 1.1rem;
        font-size: 0.7rem;
    }
}
