/* PFShare — Share My Map popup (pf_share.js) */
.pfshare-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(15, 23, 42, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.pfshare-card {
  position: relative;
  background: #fff; border-radius: 16px;
  padding: 22px 22px 18px;
  width: 100%; max-width: 360px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
}
.pfshare-close {
  position: absolute; top: 8px; right: 12px;
  border: none; background: none; font-size: 26px; line-height: 1;
  color: #94a3b8; cursor: pointer;
}
.pfshare-close:hover { color: #111; }
.pfshare-title { font-size: 17px; font-weight: 800; color: #111; }
.pfshare-sub { font-size: 12.5px; color: #6b7280; margin: 4px 0 12px; }
.pfshare-qr { margin: 0 auto 12px; width: 220px; max-width: 100%; }
.pfshare-qr svg { width: 100%; height: auto; display: block; border: 1px solid #e5e7eb; border-radius: 10px; }
.pfshare-linkrow { display: flex; gap: 6px; }
.pfshare-link {
  flex: 1; min-width: 0;
  border: 1px solid #d1d5db; border-radius: 8px;
  padding: 8px 10px; font-size: 12px; color: #374151;
}
.pfshare-copy {
  border: none; border-radius: 8px; padding: 8px 14px;
  background: #2563eb; color: #fff; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}
.pfshare-copy:hover { background: #1d4ed8; }
.pfshare-native {
  margin-top: 10px; width: 100%;
  border: 1px solid #d1d5db; border-radius: 8px; padding: 9px 12px;
  background: #fff; color: #374151; font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.pfshare-native:hover { background: #f3f4f6; }
