﻿.quick-filters {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.quick-filter {
    padding: 5px 12px;
    background: #e9ecef;
    border-radius: 15px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-filter:hover {
    background: #dee2e6;
}

.category-filters {
    padding: 15px 20px;    
    border-radius: 0 0 15px 15px;
}

.filter-chip {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.filter-chip.active, .quick-filter.active {
    background: #5c636a;
    color: white;
    border-color: #5c636a;
}

.filter-chip i {
    margin-right: 5px;
    font-size: 0.9em;
}
