
:host {
  box-sizing: border-box;
  color: var(--monster-color-primary-1);
  display: block;
  font-family: var(--monster-font-family);
  font-size: 1rem;
  line-height: 1.4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[data-monster-role="control"] {
  display: block;
}

[data-monster-role="items"] {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

[data-monster-role="item"] {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  line-height: 1.4;
}

[data-monster-role="item"].disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

[data-monster-role="checkbox"] {
  accent-color: var(--monster-color-secondary-1);
  margin-top: 0.2rem;
}

[data-monster-role="label"] {
  display: inline-block;
  min-width: 0;
  word-break: break-word;
}
