.bbr-tag-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
    min-height: 2.25rem;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    background: #fff;
    cursor: text;
    transition: border-color 0.15s;

    &:focus-within {
        border-color: #485fc7;
        box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
    }

    &--disabled {
        background: #f5f5f5;
        cursor: not-allowed;
        border-color: #dbdbdb;
    }

    &__tag {
        user-select: none;
    }

    &__input-control {
        flex: 1;
        min-width: 80px;
    }

    &__input {
        border: none;
        outline: none;
        background: transparent;
        font-size: inherit;
        width: 100%;
        min-width: 60px;
        padding: 0;
        line-height: 1.5;

        &::placeholder {
            color: #aaa;
        }
    }
}
