

  .svg-map {
    width: 90%;
    max-width: 800px;
    margin: auto;
    position: relative;
  }

  .city-point {
    fill: #ff5050;
    stroke: #fff;
    stroke-width: 1.5;
    cursor: pointer;
    transition: transform .2s;
  }
  .city-point:hover {
    transform: scale(1.4);
  }


  .tooltip strong { color: #ffd700; }
  
  
  .map-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.marker {
  cursor: pointer;
  transition: transform .2s ease;
  transform-origin: center bottom;
}

.marker:hover {
  transform: scale(1.3);

}

#xxx{
z-index: 999;
	position: absolute;
  opacity: 0;
}


.tooltip {
  position: absolute;
  background: rgba(230, 250,210, 0.9);
  color: #111;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 16px;

  line-height: 1.4;
  max-width:600px;
z-index: 998;
  overflow-y: auto;
  pointer-events: auto;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  white-space: nowrap;
  
}

.tooltip-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  color: #314b2e;
}

.tooltip-list {
  padding-left: 18px;
  margin: 0;
}

.tooltip-list li {
  margin-bottom: 4px;
}




.tooltip-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    opacity: .6;
    padding: 4px;
}

.tooltip-close:hover {
    opacity: 1;
}
  
  
  .tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}



.tooltip-link-icon {
    font-size: 14px;
    text-decoration: none;
    opacity: 0.6;
    transition: 0.2s ease;
}

.tooltip-link-icon:hover {
    opacity: 1;
    transform: scale(1.15);
}