/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.filter-chip {
    padding: 6px 12px;
    background: white;
    border-radius: 16px;
    font-size: 14px;
    border: 1px solid #eee;
    white-space: nowrap;
    cursor: pointer;
}
.filter-chip.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
