.info-tooltip {
  position: relative;
  display: inline-block;
  color: #6c757d;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}

.info-tooltip .tooltip-box {
  visibility: hidden;
  opacity: 0;
  width: 260px;
  background-color: #333;
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Arrow */
.info-tooltip .tooltip-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #333 transparent transparent;
}

/* Show on hover */
.info-tooltip:hover .tooltip-box {
  visibility: visible;
  opacity: 1;
}

.meili-highlights mark{
  background: #fff3a0;
  padding: 0 0.15em;
  border-radius: 3px;
}
