﻿/* PhantomAlpha — Tooltip styles */

/* ── Trigger wrap ─────────────────────────────────────────────────────────── */
.tt-wrap {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: help;
  border-bottom: 1px dotted var(--color-text-secondary, #64748b);
  position: relative;
}

.tt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #334155;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.tt-wrap:hover .tt-icon,
.tt-wrap:focus-within .tt-icon {
  background: #3b82f6;
  color: #fff;
}

/* ── Tooltip box ──────────────────────────────────────────────────────────── */
.tt-box {
  position: absolute;
  z-index: 9000;
  width: 280px;
  background: #1e293b;
  color: #f1f5f9;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.55;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.tt-box--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Arrow up (box appears above) */
.tt-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #334155;
}

/* Arrow down (box appears below trigger) */
.tt-box--below::after {
  bottom: auto;
  top: -6px;
  border-top: none;
  border-bottom: 6px solid #334155;
}

.tt-title {
  font-weight: 700;
  font-size: 13px;
  color: #60a5fa;
  margin-bottom: 6px;
}

.tt-desc {
  color: #cbd5e1;
  margin-bottom: 0;
}

.tt-meta {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid #334155;
}

.tt-row {
  display: flex;
  gap: 6px;
  margin-bottom: 3px;
  font-size: 11.5px;
}

.tt-key {
  color: #64748b;
  flex-shrink: 0;
}

.tt-val {
  color: #34d399;
  font-weight: 600;
}

.tt-example {
  margin-top: 8px;
  padding: 6px 8px;
  background: #0f172a;
  border-radius: 5px;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
}
