.app-native-select {
  --app-native-select-width: auto;
  --app-native-select-min-height: 40px;
  position: relative;
  display: inline-block;
  width: var(--app-native-select-width);
  max-width: 100%;
  vertical-align: middle;
}

.app-native-select__native {
  position: absolute !important;
  inset: 0;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.app-native-select__trigger {
  width: 100%;
  min-height: var(--app-native-select-min-height);
  border: 1px solid var(--border-color, #d9dde3);
  border-radius: var(--radius-md, 8px);
  background: var(--bg-card, #ffffff);
  color: var(--text-primary, #1f2937);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.app-native-select__trigger:hover {
  border-color: var(--color-primary, #F0B90B);
  background: var(--bg-hover, rgba(240, 185, 11, 0.05));
}

.app-native-select__trigger:focus,
.app-native-select__trigger[aria-expanded="true"] {
  outline: none;
  border-color: var(--color-primary, #F0B90B);
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.14);
}

.app-native-select__text {
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-native-select__icon {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--text-tertiary, #6b7280);
  transition: transform 0.2s ease, color 0.2s ease;
}

.app-native-select__trigger[aria-expanded="true"] .app-native-select__icon {
  transform: rotate(180deg);
  color: var(--color-primary, #F0B90B);
}

.app-native-select.is-empty .app-native-select__text {
  color: var(--text-tertiary, #6b7280);
}

.app-native-select.is-disabled .app-native-select__trigger,
.app-native-select__trigger:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  background: var(--bg-tertiary, #f3f4f6);
  color: var(--text-secondary, #6b7280);
  box-shadow: none;
}

.app-native-select.is-disabled .app-native-select__icon,
.app-native-select__trigger:disabled .app-native-select__icon {
  color: var(--text-disabled, #9ca3af);
}
