
:root {
  --app-bg: #0b1220;
  --panel-bg: #111827;
  --panel-bg-soft: #172033;
  --border-soft: #334155;
}

body {
  background: radial-gradient(circle at top left, #172033 0, var(--app-bg) 38%, #070b13 100%);
  min-height: 100vh;
}

.app-nav {
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(10px);
}

.filter-panel {
  background: rgba(17, 24, 39, 0.92);
  position: sticky;
  top: 82px;
}

.report-card {
  background: rgba(17, 24, 39, 0.94);
  border: 1px solid var(--border-soft);
  transition: transform .15s ease, border-color .15s ease;
  height: 100%;
}

.report-card:hover {
  transform: translateY(-2px);
  border-color: #60a5fa;
}

.report-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.field-chip {
  display: inline-block;
  margin: 0 .3rem .3rem 0;
  padding: .18rem .45rem;
  border: 1px solid #475569;
  border-radius: 999px;
  font-size: .78rem;
  color: #dbeafe;
  background: rgba(30, 41, 59, .9);
}

.card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #cbd5e1;
}

.link-button {
  margin: 0 .35rem .35rem 0;
}

pre.field-list {
  white-space: pre-wrap;
  background: #0f172a;
  color: #e5e7eb;
  padding: 1rem;
  border-radius: .75rem;
  border: 1px solid #334155;
}
