.tooltip-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  font-size: 12px;
  line-height: 14px;
}
.tooltip-box[title] {
  cursor: help;
}

.tooltip-box:hover {
  transition: transform 0.2s ease-out;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tooltip-box[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  margin-bottom: 8px;
  pointer-events: none;
}

.tooltip-box[title]:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  pointer-events: none;
}

/*# sourceMappingURL=pling-tooltip.css.map */
