html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
#controls {
  position: absolute;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  padding: 8px 12px;
  margin: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
#map {
  width: 100%;
  height: 100%;
}

.popup-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.popup-actions button {
  border: 0;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-finished { background: #16a34a; }
.btn-going { background: #7c3aed; }
.btn-no { background: #dc2626; }

/* Marker labels shown above single markers */
.leaflet-tooltip.marker-label {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: #111;
  font-size: 12px;
  line-height: 1.2;
  pointer-events: none; /* let clicks hit the marker */
}

/* Hide the little tooltip caret */
.leaflet-tooltip.marker-label::before {
  display: none;
}

/* Custom marker colors use Leaflet circle markers, no extra CSS needed */ 