.info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  font-size: 11px;
  font-weight: 700;
  cursor: help;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1;
}

.info-tooltip:hover,
.info-tooltip:focus,
.info-tooltip:focus-within {
  background: rgba(255, 255, 255, 0.2);
  color: #e5e7eb;
  outline: none;
}

.info-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #ddd;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #444;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  width: 250px;
  text-align: left;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: opacity 120ms ease-in-out;
}

.info-tooltip:hover .tooltip-text,
.info-tooltip:focus .tooltip-text,
.info-tooltip:focus-within .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 640px) {
  .info-tooltip .tooltip-text {
    width: 220px;
    left: 0;
    transform: none;
  }
}

.lz-tooltip {
  border-bottom: 1px dotted #5cf3d5;
  cursor: help;
}
