.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    padding: 10px 20px;
    border-radius: 24px;
    background: #334155;
    border: 2px solid #475569;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: bold;
    color: #CBD5E1;
    display: flex;
    align-items: center;
}

.chip:hover {
    background: #475569;
    color: white;
}

.chip.active {
    background: #0EA5E9;
    border-color: #38BDF8;
    color: white;
    box-shadow: 0 0 15px rgba(14,165,233, 0.4);
}

.dropdown-chip {
    padding: 0;
    overflow: hidden;
}

.dropdown-chip select {
    background: transparent;
    color: inherit;
    border: none;
    padding: 10px 20px;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    width: 100%;
    appearance: none;
}

.dropdown-chip select option {
    background: #1E293B;
    color: white;
}

.dropdown-chip::after {
    content: '▼';
    padding-right: 15px;
    font-size: 0.8em;
    pointer-events: none;
}
