:root {
  font-family:Inter,ui-sans-serif,system-ui,sans-serif;
  color:#182e3b;
  background:#f1f5f7;
  font-synthesis:none;
}

* {
  box-sizing:border-box;
}

body {
  margin:0;
}

header {
  display:flex;
  align-items:center;
  gap:22px;
  background:#102f3b;
  color:#fff;
  padding:28px max(24px,calc((100vw - 1180px)/2));
}

header img {
  object-fit:contain;
}

h1 {
  font-size:26px;
  margin:0 0 6px;
}

header p {
  margin:0;
  color:#b8d1da;
}

main {
  max-width:1228px;
  padding:24px;
  margin:auto;
}

section {
  padding:24px;
  background:#fff;
  border:1px solid #d9e3e8;
  border-radius:12px;
  margin-bottom:22px;
  min-width:0;
}

.columns {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.columns .columns {
  gap:12px;
}

h2 {
  font-size:18px;
  margin:0 0 20px;
}

.section-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.section-heading h2 {
  margin-bottom:0;
}

label {
  display:block;
  font-size:13px;
  font-weight:650;
  margin:12px 0;
}

input,select,textarea {
  display:block;
  width:100%;
  margin-top:7px;
  padding:11px;
  border:1px solid #bdcdd5;
  border-radius:6px;
  font:inherit;
  color:#182e3b;
  background:#fff;
}

button {
  background:#006b61;
  color:white;
  border:0;
  border-radius:6px;
  padding:11px 16px;
  font:inherit;
  cursor:pointer;
  margin:8px 8px 8px 0;
}

button:hover {
  background:#005247;
}

button:disabled {
  opacity:.5;
  cursor:default;
}

.secondary {
  background:#e9f1f4;
  color:#254752;
}

.secondary:hover {
  background:#d9e6eb;
}

.danger {
  background:#a72f2f;
}

.danger:hover {
  background:#812323;
}

.muted {
  color:#536c79;
  font-size:13px;
  overflow-wrap:anywhere;
}

p {
  line-height:1.55;
}

code,textarea {
  font-family:ui-monospace,monospace;
}

a {
  color:#006b61;
}

.badge {
  display:inline-block;
  padding:7px 12px;
  border-radius:20px;
  background:#e6edf3;
  font-weight:700;
}

.badge.passed {
  background:#dbf4e6;
  color:#165837;
}

.badge.failed,.badge.error {
  background:#ffe2e2;
  color:#8f2727;
}

.badge.inconclusive,.badge.skipped {
  background:#fff0cc;
  color:#795900;
}

table {
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  margin:20px 0;
}

th,td {
  text-align:left;
  border-bottom:1px solid #dde7eb;
  padding:10px 6px;
  overflow-wrap:anywhere;
}

td small {
  display:block;
  color:#536c79;
  margin-top:5px;
}

.run {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #e5ebee;
  padding:10px 0;
  gap:16px;
}

.run p {
  margin:0;
}

#connect {
  display:flex;
  gap:12px;
  align-items:end;
}

#connect label {
  flex:1;
  max-width:560px;
}

#connect button {
  margin-bottom:13px;
}

#message {
  font-size:14px;
}

#qr {
  display:block;
  margin:auto;
}

#uri {
  font-size:12px;
}

#interaction {
  margin:20px 0;
}

@media(max-width:760px) {
  .columns {
    grid-template-columns:1fr;
  }

  header {
    padding:22px;
  }

  main {
    padding:16px;
  }

  section {
    padding:18px;
  }

  #connect {
    display:block;
  }

}
