.htc-tooltip {
  position: relative;
  cursor: pointer;
}

.htc-tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;

  position: absolute;
  z-index: 99;
  bottom: 125%; /* adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  white-space: nowrap;
}

.htc-tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


