html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #0b0e12;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#map {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

#coords {
  position: absolute;
  right: 14px;
  top: 14px;
  background: rgba(10, 12, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  z-index: 999;
  min-width: 220px;
}

.coords-title {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.coords-value {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

#copyBtn,
#copyPolyBtn {
  background: #d32f2f;
  border: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

#copyBtn:hover,
#copyPolyBtn:hover {
  background: #b71c1c;
}

#editPanel {
  margin-top: 10px;
}

#zoneName,
#zoneType,
#polyValue {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 8px;
}

#polyValue {
  min-height: 80px;
  resize: vertical;
}

.leaflet-top.leaflet-left {
  top: 10px;
  left: 10px;
}

.leaflet-bottom.leaflet-right {
  bottom: 10px;
  right: 10px;
}

.leaflet-control-layers {
  margin-top: 10px;
}
