export function formatPercentage(pct: number) { const prefix = pct > 0 ? "+" : ""; return `${prefix}${pct.toFixed(2)}%`; }