.calculator-map-section {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.calculator-map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.calculator-map-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.calculator-map-wrapper  svg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.cards_element {
  fill: none;
  cursor: pointer;
  pointer-events: all;
}

.calculator-popup {
  position: absolute;
  z-index: 9999;
  background: #111;
  border: 2px solid #00ffff;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 0 20px #00ffff;
  display: none;
  min-width: 240px;
  max-width: 320px;
  font-family: Arial, sans-serif;
}

.calculator-popup.visible {
  display: block;
}

.calculator-popup h3 {
  margin-top: 0;
  font-size: 18px;
  color: #00ffff;
  text-shadow: 0 0 6px #00ffff;
}

.calculator-popup ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.calculator-popup li {
  margin: 8px 0;
}

.calculator-popup a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.calculator-popup a:hover {
  color: #ff00ff;
  text-shadow: 0 0 6px #ff00ff;
}

.disabled-link {
  color: #555;
  font-style: italic;
  cursor: default;
}

