:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #1a3039;
  background: #f4f6f6;
  font-size: 15px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: #fff;
  border-bottom: 1px solid #dde5e6;
}
.brand {
  text-decoration: none;
  color: #125c58;
  font-size: 25px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand span {
  font-size: 12px;
  letter-spacing: 1.4px;
  color: #263c43;
}
#vm {
  margin-left: auto;
  font-size: 13px;
}
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 30px;
}
.intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
h1 {
  font-size: 34px;
  letter-spacing: -1px;
  margin: 6px 0 12px;
}
h2 {
  font-size: 21px;
  margin: 0 0 16px;
}
h3 {
  font-size: 17px;
  margin: 0 0 10px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #38746d;
  margin: 0 0 10px;
}
.muted,
.footnote {
  color: #65777f;
}
.label,
.badge {
  display: inline-block;
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.label {
  background: #e5eeed;
  color: #38645e;
}
.badge.passed {
  color: #146341;
  background: #e2f3e9;
}
.badge.failed,
.badge.error,
.badge.invalid {
  color: #a43838;
  background: #fbe8e7;
}
.badge.incomplete,
.badge.unknown {
  color: #856027;
  background: #fff1d6;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 28px 0;
}
.stat,
.card {
  background: #fff;
  border: 1px solid #dfe6e7;
  border-radius: 10px;
  padding: 24px;
}
.stat strong {
  display: block;
  font-size: 30px;
  line-height: 1.3;
}
.stat span {
  font-size: 12px;
  color: #65777f;
}
.filters {
  display: flex;
  gap: 12px;
  margin: 28px 0 16px;
}
input,
select,
button {
  font: inherit;
  border: 1px solid #cfdbdd;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: inherit;
}
input {
  min-width: 0;
}
#search {
  flex: 1;
}
button {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
button:hover {
  border-color: #43867d;
  background: #f1f7f5;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.primary {
  background: #17675e;
  color: white;
  border-color: #17675e;
}
.link {
  border: 0;
  background: transparent;
  color: #17675e;
  padding-left: 0;
}
.table-wrap {
  border: 1px solid #dfe6e7;
  border-radius: 10px;
  overflow: auto;
  background: #fff;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th {
  text-align: left;
  color: #738188;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  background: #fafcfc;
  padding: 16px;
}
td {
  padding: 20px 16px;
  border-top: 1px solid #e7eded;
  font-size: 13px;
}
td small {
  display: block;
  color: #75868d;
  margin-top: 6px;
  max-width: 440px;
  overflow-wrap: anywhere;
}
td strong {
  display: block;
  margin-bottom: 5px;
}
tbody tr:hover {
  background: #fafdfc;
}
.empty {
  text-align: center;
  padding: 45px;
}
.footnote {
  font-size: 12px;
  margin-top: 18px;
}
#error,
.warning {
  border: 1px solid #e7bdaa;
  background: #fff4ee;
  padding: 16px;
  border-radius: 7px;
  margin-bottom: 20px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.tabs {
  display: flex;
  gap: 7px;
  margin: 24px 0;
}
.tabs button[aria-selected='true'] {
  background: #17675e;
  color: #fff;
}
.card {
  margin: 16px 0;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #f5f8f8;
  padding: 15px;
  border-radius: 7px;
  font-size: 12px;
  max-height: 440px;
  overflow: auto;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.step-head h3 {
  margin: 0;
  flex: 1;
}
.shot {
  width: 100%;
  border-radius: 7px;
  border: 1px solid #dfe6e7;
  margin-top: 16px;
  display: block;
}
.transcript {
  white-space: pre-wrap;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.source code {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 10px;
  color: #687b80;
}
form {
  max-width: 760px;
  background: #fff;
  border: 1px solid #dfe6e7;
  padding: 28px;
  border-radius: 10px;
  margin-top: 30px;
}
label {
  display: block;
  font-size: 13px;
  margin-bottom: 18px;
}
label input {
  display: block;
  width: 100%;
  margin-top: 8px;
}
details {
  margin: 12px 0;
}
summary {
  cursor: pointer;
  color: #17675e;
  font-weight: 600;
  font-size: 13px;
}
a {
  color: #17675e;
}
.run-id {
  font-family: monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}
[hidden] {
  display: none !important;
}
@media (max-width: 750px) {
  header {
    padding: 16px;
    flex-wrap: wrap;
  }
  .brand span {
    font-size: 10px;
  }
  #vm {
    display: none;
  }
  main {
    padding: 25px 16px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .filters {
    flex-wrap: wrap;
  }
  #search {
    flex-basis: 100%;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .intro .label {
    display: none;
  }
  h1 {
    font-size: 28px;
  }
  .tabs {
    flex-wrap: wrap;
  }
}
