.ref-list { display: flex; flex-direction: column; gap: 8px; max-height: 480px; overflow: auto; }
.ref-item {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); cursor: pointer; text-align: left; width: 100%;
  font-family: inherit; color: inherit;
}
.ref-item:hover, .ref-item:focus-visible { border-color: var(--primary); background: var(--primary-a10); }
.badge {
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  background: var(--bg-muted); color: var(--text-muted);
}
.badge-1xx { background: var(--info-bg); color: var(--info); }
.badge-2xx { background: var(--success-bg); color: var(--success); }
.badge-3xx { background: var(--warning-bg); color: var(--warning); }
.badge-4xx, .badge-5xx { background: var(--error-bg); color: var(--error); }
.code { font-weight: 800; font-variant-numeric: tabular-nums; min-width: 2.5rem; }
