html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

#map {
  position: absolute;
  inset: 0;
}

#toolbar {
  position: absolute;
  top: 90px;
  left: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#toolbar button,
#toolbar label {
  display: block;
  padding: 6px 10px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
}

#toolbar button:hover,
#toolbar label:hover {
  background: #f4f4f4;
}

#toolbar button.active {
  background: #3388ff;
  color: white;
}

#toolbar button[hidden],
#toolbar label[hidden] {
  display: none;
}

#info-panel {
  position: absolute;
  bottom: 20px;
  left: 10px;
  z-index: 1000;
  background: white;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  max-width: 280px;
  font-family: sans-serif;
}

#toast {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: #c0392b;
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  cursor: pointer;
  font-family: sans-serif;
}
