body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f6f7fb;
  color: #222;
}

.container {
  max-width: 960px;
  margin: 40px auto;
  padding: 24px 20px 40px;
}

.subtitle {
  color: #555;
  margin-top: 6px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #777;
  margin: 0;
}

.pill {
  background: #e8f5e9;
  color: #1d7a36;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.pill.error {
  background: #fdecea;
  color: #b3261e;
}

.table-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.table-title {
  font-weight: 700;
}

.table-meta {
  color: #666;
  font-size: 13px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px 8px;
  text-align: left;
}

th:nth-child(2), td:nth-child(2),
th:nth-child(3), td:nth-child(3),
th:nth-child(4), td:nth-child(4),
th:nth-child(5), td:nth-child(5) {
  text-align: center;
}

td:nth-child(6),
td:nth-child(7) {
  text-align: right;
}

thead {
  border-bottom: 1px solid #e7e9ed;
}

tbody tr:nth-child(even) {
  background: #fafafa;
}

tbody tr:hover {
  background: #f5f7fb;
}

.muted {
  color: #777;
  text-align: center;
}

.report-icon {
  font-size: 18px;
}

.report-icon.yes {
  color: #1d7a36;
}

.report-icon.no {
  color: #b3261e;
}

/* Sub-row styles for individual reports */
tr.sub-row {
  background: #fafbfc !important;
  font-size: 14px;
  color: #555;
}

tr.sub-row:hover {
  background: #f0f2f5 !important;
}

tr.sub-row td.indented {
  padding-left: 32px;
  font-style: italic;
  max-width: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
