.hover-tip-container {
  position: absolute;
  z-index: 10000;
  display: none;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(230, 162, 60, 0.2));
  transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(4px);
  will-change: opacity, transform;
}

.hover-tip-content {
  background: #fdf6ec;
  color: #303133;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #faecd8;
  font-size: 13px;
  line-height: 1.5;
  white-space: normal;
  max-width: 300px;
  text-align: left;
}

.hover-tip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  left: 50%;
  transform: translateX(-50%);
}

.hover-tip-container.position-top .hover-tip-arrow {
  bottom: -6px;
  border-width: 6px 6px 0 6px;
  border-color: #fdf6ec transparent transparent transparent;
}

.hover-tip-container.position-bottom .hover-tip-arrow {
  top: -6px;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #fdf6ec transparent;
}