/* Pakstoor :: pks-address.css :: v1.1-000002 :: 2026-04-24 */

.pks-addr-drop {
  /* Absolute-positioned on document.body — document-relative coords so
     the dropdown anchors correctly under the input even when the input
     is inside a modal with transform/filter/etc. z-index is deliberately
     above the deal address modal (901) and any reasonable page chrome. */
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pks-addr-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 80ms;
}

.pks-addr-item.is-active,
.pks-addr-item:hover {
  background: var(--bg-2);
}

.pks-addr-item.is-active .pks-addr-suburb {
  color: var(--gold);
}

.pks-addr-suburb {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.pks-addr-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
