/* Category Filter Tabs Styles */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #374151;
}

.category-tab.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.category-tab-icon {
    margin-right: 6px;
    font-size: 11px;
}

.category-tab-count {
    margin-left: 6px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
}

.category-tab.active .category-tab-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .category-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .category-tab-icon {
        margin-right: 8px;
        font-size: 12px;
    }
    
    .category-tab-count {
        margin-left: 8px;
        padding: 3px 8px;
        font-size: 11px;
    }
}
