#dexNativeMenu {
  position: fixed;
  background: var(--c-panel-2);
  border: 1px solid color-mix(in srgb, var(--c-white) 08%, transparent);
  border-radius: 14px;
  padding: 6px;
  z-index: 10050;
  display: none;
  flex-direction: column;
  min-width: 190px;
  font-family: 'classy', sans-serif;
  -webkit-touch-callout: none;
}
#dexNativeMenu.open { display: flex; animation: dexNmIn 0.16s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes dexNmIn {
  from { opacity: 0; transform: scale(0.94) translateY(-4px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.dex-nm-item {
  background: transparent;
  border: none;
  color: var(--c-white);
  display: flex; align-items: center; gap: 12px;
  padding: var(--btn-padding);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  text-align: left;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none; -webkit-user-select: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.dex-nm-item:hover, .dex-nm-item:active, .dex-nm-item:focus-visible { background: var(--c-panel-2); color: var(--c-blue); }
.dex-nm-item:focus-visible { outline: none; }
.dex-nm-item.dex-nm-danger:hover, .dex-nm-item.dex-nm-danger:active {
  color: var(--c-danger);
  background: color-mix(in srgb, var(--c-danger) 08%, transparent);
}
.dex-nm-sep {
  height: 1px;
  background: color-mix(in srgb, var(--c-white) 08%, transparent);
  margin: 4px 8px;
}
