/* ═══ 15b. PROGRESS-VS-PLAN INSIGHT ══════════════════════════════════ */

/* Group the picker + insight trigger on the right of the tracker cover bar. */
.trk-bar-actions { display: flex; align-items: flex-end; gap: 14px; }

.modal.pvp-modal { width: 1320px; max-width: calc(100% - 64px); height: 60%; max-height: 60%; }
/* Project name trails the modal title, muted — same voice as other headings. */
.pvp-project { color: var(--ink-faint); font-weight: 400; margin-left: 10px; }
.pvp-body { display: flex; flex-direction: column; gap: 14px; }

.pvp-viewmenu { display: flex; flex-wrap: wrap; gap: 6px; }

.pvp-card {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
}
.pvp-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; margin-bottom: 12px;
}
.pvp-chart-title { font-size: var(--text-lg); font-weight: 400; letter-spacing: .2px; }
.pvp-chart-range { font-size: var(--text-sm); color: var(--ink-faint); letter-spacing: .04em; }

.pvp-canvas-wrap { position: relative; flex: 1; min-height: 220px; }
.pvp-canvas-wrap canvas { display: block; width: 100%; height: 100%; cursor: crosshair; }
.pvp-empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 48px;
  color: var(--ink-faint); font-size: var(--text-sm); line-height: var(--lh-body);
}

