.chip-scroll-wrapper {
    overflow-x: scroll;     /* Always show horizontal scrollbar */
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
}

.chip-row {
    display: inline-flex;   /* Ensure chips are in a row, not wrapping */
    padding-top: 0.5rem;
    padding-bottom: 0.7rem;
}

.chip {
    border-radius: 5px;
    padding: .3rem 1rem;
    margin: 0 7px;
    min-width: 50px;
    font-size: 14px;
    display: inline-block;
}

.chip.active {
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 0 1rem rgba(var(--bs-body-color-rgb, 0, 0, 0), 0.2);
    border-radius: 9px;
}
