html, body {
  margin: 0;
  height: 100%;
}

#map {
  height: 100%;
}

#coordBox {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px;
  border-radius: 6px;
  width: 95%;
  max-width: 420px;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1000;
}

.title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}

.subtitle {
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 4px;
}

#coords {
  text-align: center;
  font-weight: bold;
  margin-bottom: 6px;
}

.row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 6px;
}

input {
  width: 100%;
  margin-bottom: 6px;
}

.buttons {
  display: flex;
  gap: 6px;
  justify-content: center;
}

hr {
  margin: 8px 0;
}
