/* Tender Intelligence — minimal overrides on top of Tailwind CDN */

/* Clamp to 3 lines on result card descriptions */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

/* Prevent long unbroken tokens from blowing out cards */
article h3, article p { overflow-wrap: anywhere; }

/* Table rows on debug page */
.debug-table th { text-align: left; font-weight: 600; padding: 0.5rem 0.75rem; color: #334155; }
.debug-table td { padding: 0.5rem 0.75rem; border-top: 1px solid #e2e8f0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.875rem; }
.debug-table tr:nth-child(odd) td { background: #f8fafc; }

/* Latency chart container */
.chart-wrap { position: relative; height: 260px; }
