
/* 🔥 LIST STYLE */
.tooltip-list {
  margin: 0;
  padding-left: 16px;
}

.tooltip-list li {
  margin: 4px 0;
}

.tag {
  display: inline-block;
  background: #444;
  padding: 4px 8px;
  margin: 2px;
  border-radius: 4px;
  font-size: 12px;
}


.skill-tooltip {
  position: fixed;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.15s ease;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  max-width: 220px;
}

/* SHOW */
.skill-tooltip.show {
  opacity: 1;
}

/* 🔥 ARROW */
.skill-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

/* DEFAULT → arrow pointing UP */
.skill-tooltip.arrow-down::after {
  top: -6px;
  left: 20px;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent rgba(20,20,20,0.95) transparent;
}

/* FLIPPED → arrow pointing DOWN */
.skill-tooltip.arrow-up::after {
  bottom: -6px;
  left: 20px;
  border-width: 6px 6px 0 6px;
  border-color: rgba(20,20,20,0.95) transparent transparent transparent;
}