/* mesh place picker — the settlement autocomplete dropdown. Neutral surface so
   it reads on both the dark portal forms and the light wp-admin meta box. */
.mp-ac {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  color: #17151f;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  font-size: 14px;
  -webkit-overflow-scrolling: touch;
}
.mp-ac-item {
  padding: 9px 12px;
  cursor: pointer;
  line-height: 1.3;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.mp-ac-item:last-child { border-bottom: 0; }
.mp-ac-item.on,
.mp-ac-item:hover { background: #ede9fe; color: #4c1d95; }

.mp-hint {
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.35;
  color: #b45309;
}
@media (prefers-color-scheme: dark) { .mp-hint { color: #fbbf24; } }
