/* ============================================================
   GPG Address Autocomplete — custom suggestion dropdown
   (Places API New; body-appended, positioned under the input)
   Matches the .gpgms design system: Onest, hairline, steel.
============================================================ */
.gpg-ac-list {
  position: absolute;
  z-index: 100000;
  margin: 0;
  padding: 5px;
  list-style: none;
  max-height: 288px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #E3EAF2;
  border-radius: 12px;
  box-shadow: 0 18px 40px -18px rgba(10, 31, 60, .38);
  font-family: Onest, system-ui, -apple-system, Roboto, Arial, sans-serif;
  -webkit-overflow-scrolling: touch;
}
.gpg-ac-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1.3;
}
.gpg-ac-item:hover,
.gpg-ac-item.is-active {
  background: #F4F7FB;
}
.gpg-ac-main {
  font-size: 14px;
  font-weight: 700;
  color: #0A1F3C;
}
.gpg-ac-sec {
  font-size: 12.5px;
  color: #5D6B79;
}
