/**
 * Tooltips
 * Hover tooltip styles
 */

/* ============================================
   TOOLTIP
   ============================================ */
.tooltip {
  position: relative;
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0.75rem;
  background: var(--popover);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* Tooltip arrow */
.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--popover);
}

/* ============================================
   TOOLTIP POSITIONS
   ============================================ */
.tooltip-top .tooltip-content {
  bottom: calc(100% + 8px);
  top: auto;
}

.tooltip-bottom .tooltip-content {
  top: calc(100% + 8px);
  bottom: auto;
}

.tooltip-bottom .tooltip-content::after {
  top: -8px;
  border-top-color: transparent;
  border-bottom-color: var(--popover);
}

.tooltip-left .tooltip-content {
  left: auto;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  top: 50%;
}
