@use '@funidata/fudis-core' as core;

.fudis-multiselect-chip-list {
  @include core.box-reset;

  display: flex;
  flex-wrap: wrap;
  gap: core.$spacing-xxs;
  padding-top: core.$spacing-xxs;

  &__button {
    @include core.bg-color('gray-dark');
    @include core.text-color('white');
    @include core.body-text-md-regular;
    @include core.border-none;
    @include core.box-reset;

    display: block;
    cursor: pointer;
    padding: 0 core.$spacing-xs 0 0;

    &:focus {
      @include core.focus-generic;
    }
  }
}
