/* SVG Tooltip */
.svg-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  max-width: 220px;
}

.svg-tooltip-text {
  display: block;
  background: #1e293b;
  color: #f8fafc;
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: normal;
}

.svg-tooltip-arrow {
  position: absolute;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #1e293b;
  transform: translateX(-50%) rotate(45deg);
}

.svg-tooltip-arrow--top {
  bottom: auto;
  top: -5px;
}
