body {
  font-family: sans-serif;
  margin: 0;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  text-align: center;
  padding: 20px;
}

#greeting {
  font-size: 2em;
  margin-bottom: 20px;
}

#map {
  width: 80vw;
  height: 60vh;
  border: 2px solid #ccc;
  border-radius: 8px;
}

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.leaflet-popup-content {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.1em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  color: #000;
  margin: 5px 10px;
}
