.map-container {
  width: 100%;
  position: relative;
}
.map-line-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.cyprus-map {
  width: 100%;
  max-width: 600px; /* или сколько нужно */
  height: auto;
  display: block;
}

.cyprus-shape {
  fill: #d47801;
  stroke: #7c000c;
  stroke-width: 2;
}
.city {
  cursor: pointer;
}

.city-ring {
  fill: none;
  stroke: #7c000c;
  stroke-width: 2;
  opacity: 0.9;
}
.city-ring-capital {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  opacity: 0.9;
}

.city-dot {
  fill: #7c000c;
}
.city-dot-capital {
  fill: #fff;
}

.city-label {
  font-size: 14px;
  font-family: Comfortaa, sans-serif;
  fill: #7c000c;
  text-anchor: middle;
  letter-spacing: 0.05em;
}
.city-label-capital {
  font-size: 14px;
  font-family: Comfortaa, sans-serif;
  fill: #fff;
  text-anchor: middle;
  letter-spacing: 0.05em;
}
.city:hover .city-ring {
  stroke-width: 3;
}

.city:hover .city-dot {
  r: 6;
}

.city-panel {
  position: absolute;
  max-width: 360px;
  padding: 20px 24px;
  border: 1.5px solid #7c000c;
  border-radius: 16px;
  background: #fbf4ec;
  color: #7c000c;
  font-family: Comfortaa, sans-serif;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.city-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
