.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-box {
  display: none;
  position: fixed; /* Instead of absolute */
  top: 0;
  left: 0;
  background: white;
  padding: 0.75em;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  width: max-content;
  max-width: 300px;
}


.tooltip-wrapper:hover .tooltip-box {
  display: block;
}

/* Mobile-safe: show on click */
.tooltip-box.active {
  display: block !important;
}