.nm-select-inner { min-width: 0; position: relative; }
.nm-custom-select-native { display: none !important; }

.nm-select-display {
  width: 100%; min-width: 220px; min-height: 40px; padding: 8px 12px;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 8px;
  border: 1px solid #d1d5db; border-radius: 8px; color: #111827; background: #fff;
  font-size: 15px; line-height: 1.5; cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.nm-select-display:hover:not(:disabled) { border-color: #93a4b8; }
.nm-select-display:focus-visible {
  outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, .2);
}
.nm-select-display:disabled {
  color: #94a3b8; background: #f1f5f9; cursor: not-allowed; opacity: .68;
}
.nm-select-display-text {
  min-width: 0; flex: 1 1 auto; display: block; overflow: hidden; text-align: left;
  text-overflow: ellipsis; white-space: nowrap;
}
.nm-select-display > .nm-plan-badge { margin-inline-start: auto; }
.nm-select-caret {
  width: 16px; height: 16px; flex: 0 0 16px; color: #64748b;
  transition: transform var(--nm-motion-fast, 120ms) var(--nm-motion-standard-easing, ease);
}
.nm-select-display[aria-expanded='true'] .nm-select-caret { transform: rotate(180deg); }

.nm-select-dropdown {
  max-height: 16rem; overflow-y: auto; border: 1px solid #e5e7eb;
  border-radius: 8px; color: #111827; background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .16); overscroll-behavior: contain;
}
.nm-select-dropdown.max-h-60 { max-height: 15rem; }
.nm-select-dropdown.max-h-64 { max-height: 16rem; }
.nm-select-dropdown.max-h-72 { max-height: 18rem; }
.nm-select-dropdown.hidden { display: none; }
.nm-select-dropdown:not([data-select-portal='1']) {
  width: 100%; position: absolute; left: 0; right: 0; z-index: 30; margin-top: 4px;
}
.nm-select-search-wrap {
  position: sticky; top: 0; z-index: 1; padding: 8px;
  border-bottom: 1px solid #e5e7eb; background: inherit;
}
.nm-select-search {
  width: 100%; min-height: 40px; padding: 8px 10px; border: 1px solid #d1d5db;
  border-radius: 6px; color: #111827; background: #fff; font-size: 16px; line-height: 1.5;
}
.nm-select-search:focus {
  outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, .16);
}
.nm-select-options { padding: 4px 0; }
.nm-select-group-label {
  padding: 10px 12px 5px; color: #64748b; font-size: 12px; font-weight: 600;
  line-height: 1.4;
}
.nm-select-group-label:not(:first-child) {
  margin-top: 4px; border-top: 1px solid #e5e7eb;
}
.nm-select-option {
  width: 100%; min-height: 42px; padding: 9px 12px; display: flex; align-items: center;
  gap: 10px; border: 0; color: inherit; background: transparent; text-align: left; cursor: pointer;
}
.nm-select-option-label {
  min-width: 0; flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nm-select-option > .nm-plan-badge { margin-inline-start: auto; }
.nm-select-option.nm-control-state--plan-gated,
.nm-select-option.nm-pro-locked-control[aria-disabled='true'] { color: inherit; opacity: 1; }
.nm-select-option:hover:not(:disabled),
.nm-select-option[aria-selected='true'] { background: #f1f5f9; }
.nm-select-option:focus-visible { outline: 2px solid #3b82f6; outline-offset: -2px; }
.nm-select-option:disabled { color: #94a3b8; cursor: not-allowed; opacity: .72; }
.nm-select-empty { padding: 14px 12px; color: #6b7280; text-align: center; font-size: 14px; }

html.dark .nm-select-display { border-color: #334155; color: #e2e8f0; background: #0f172a; }
html.dark .nm-select-display:hover:not(:disabled) { border-color: #64748b; }
html.dark .nm-select-display:focus-visible {
  border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96, 165, 250, .24);
}
html.dark .nm-select-display:disabled { color: #64748b; background: #111827; }
html.dark .nm-select-dropdown {
  border-color: #1f2937; color: #e2e8f0; background: #0f172a;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
}
html.dark .nm-select-search-wrap { border-bottom-color: #1f2937; }
html.dark .nm-select-search { border-color: #334155; color: #e2e8f0; background: #111827; }
html.dark .nm-select-search::placeholder,
html.dark .nm-select-empty { color: #94a3b8; }
html.dark .nm-select-group-label { color: #94a3b8; }
html.dark .nm-select-group-label:not(:first-child) { border-top-color: #1f2937; }
html.dark .nm-select-option:hover:not(:disabled),
html.dark .nm-select-option[aria-selected='true'] { background: #1f2937; }

@media (max-width: 639px) {
  .nm-select-display, .nm-select-option { min-height: 44px; font-size: 16px; }
}
