.ste_icon_info {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: "#007bff";
  color: white;
  font-weight: bold;
  font-size: 18px;
  font-family: Arial, sans-serif;
  font-style: normal;
  cursor: help;
  user-select: none;
}

.ste_tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  display: none;
  z-index: 1000;
  pointer-events: none;
  max-width: 200px;
}

.ste_tooltip.visible {
  display: block; /* Mostra il tooltip quando è visibile */
}
