.searchable-single-select-native select {
  display: block;
  width: 100%;
  min-height: var(--control-height-lg);
  margin-top: 0;
  padding: 9px 12px;
  border-color: var(--color-border-strong);
}

.searchable-single-select-toggle,
.searchable-single-select-menu {
  display: none;
}

.searchable-single-select.is-enhanced .searchable-single-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.searchable-single-select.is-enhanced .searchable-single-select-toggle {
  display: flex;
}

.searchable-single-select.is-enhanced .searchable-single-select-menu:not([hidden]) {
  display: block;
}

.searchable-single-select-toggle span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.searchable-single-select-options {
  max-height: 260px;
}

.searchable-single-select-option {
  display: block;
  width: 100%;
  min-height: var(--control-height-md);
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  text-align: left;
  overflow-wrap: anywhere;
}

.searchable-single-select-option.is-selected {
  background: var(--color-accent-soft);
  color: var(--color-accent-text);
  font-weight: 600;
}

.searchable-single-select-option:disabled {
  color: var(--color-text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.searchable-single-select-empty[hidden] {
  display: none;
}
