/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Full-screen map ── */
html, body {
  height: 100%;
  font-family: system-ui, sans-serif;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 100%;
}

/* ── Modal overlay ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.hidden {
  display: none;
}

/* ── Modal card ── */
.modal-content {
  background: #FFF4E0;
  color: #222222;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 90vw;
  width: 340px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #004F63;
}

.modal-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.modal-content button {
  background: #FFB347;
  color: #222222;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.modal-content button:active {
  background: #8C3A00;
  color: #FFF4E0;
}