/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/tooltip.css
 * @description: 툴팁 스타일
 * @components: 툴팁
 * @usage: 툴팁 스타일링
 */
.tooltip-container {
  position: relative;
}

/* 툴팁 스타일 */
.tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
  pointer-events: none;
}

/* 툴팁 화살표 */
.tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.8);
}

/* 호버 시 툴팁 표시 */
.tooltip-container:hover .tooltip {
  opacity: 1;
  visibility: visible;
  bottom: -35px;
}
