#map-cursor {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

#map-cursor .label {
  background: #ff4d5e;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: sans-serif;
  margin-top: 4px;
  white-space: nowrap;
  text-align: center;
}

.branch, .land {
  transition: fill-opacity 0.2s ease, stroke-width 0.2s ease;
  cursor: pointer;
}

.branch:hover, .land:hover {
  stroke-width: 1.5;
  fill-opacity: 1;
}
