:host {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  color: var(--color-select-option-text);
}

:host(:hover) {
  background-color: var(--color-select-option-hover);
}

:host(:active) {
  background-color: var(--color-select-option-active);
}

:host(.selected) {
  background-color: var(--color-select-option-selected);
  font-weight: 600;
}

:host(.small) {
  font-size: 12px;
  padding: 3px 10px;
}

:host(.large) {
  font-size: 16px;
  padding: 7px 14px;
}