/* ══════════════════ Tooltip Setup ══════════════════ */
.popover-content {
  position: absolute;
  pointer-events: none;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.2s ease;

  font-size: 0.75rem;

  background-color: rgba(12, 12, 12, 0.8);
  color: #d6d6d6;

  padding: 0; 
  border-radius: 0;

  z-index: 9999;
  width: 230px;

  line-height: 1.35;

  border-top: 1px solid rgba(120, 120, 120, 0.35);
  border-left: 1px solid rgba(120, 120, 120, 0.35);
  border-right: 1px solid rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    4px 4px 0 rgba(0, 0, 0, 0.35);

  overflow: hidden; 
}

/* ══════════════════ Title ══════════════════ */
.popover-title {
  display: block;
  width: 100%;

  background: rgba(0, 0, 0, 0.4);
  color: #e8e8e8;

  font-size: 16px;
  font-weight: 700;

  padding: 3px 8px;
  box-sizing: border-box;

  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85);
}

.popover-title:before {
    content: ">";
    margin-right: 6px;
}

/* ══════════════════ Description ══════════════════ */
.popover-desc {
  font-size: 11.5px;
  color: #c4c4c4;
  line-height: 1.3;

  padding: 6px 7px;

  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
}

/* ══════════════════ Smaller Tooltip ══════════════════ */

.popover--title-only {
  width: auto;
  max-width: 180px;
}

.popover--title-only .popover-title {
  font-size: 14px;
  padding: 4px 8px;
}

.popover--title-only .popover-desc {
  display: none;
}