/* SELLER MAP */
#harita-container path {
  fill: #ffffff;
  stroke: #000;
  stroke-width: 0.2px;
  cursor: pointer;
  transition: fill 0.3s;
}

#harita-container path:hover {
  fill: var(--nanok-orange);
}

.tooltip {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  margin: 5px;
  padding: 5px;
  border-radius: 3px;
  font-size: 12px;
  pointer-events: none;
}

#harita-container svg path:hover {
  cursor: pointer;
}

#harita-container .selected {
  fill: var(--nanok-orange);
}