/* Eval harness — lightweight overrides on top of Base Styles + Litewind */

a { color: inherit; }
.no-underline { text-decoration: none; }

.evals-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 0.6rem;
}

.score-pill.dim { background: #94a3b8; color: white; }

.eval-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
}

.eval-output {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 8px;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 360px;
  overflow-y: auto;
}

.eval-output.compact {
  max-height: 180px;
}

.run-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  display: flex;
  flex-direction: column;
}

.run-card-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.run-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.run-preview {
  width: 100%;
  height: 220px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: white;
}

.runs-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  align-items: start;
}

.muted { color: #64748b; }
.text-tiny { font-size: 0.72rem; }
