:root {
  font-family: system-ui, sans-serif;
  color: #243035;
  background: #f4f6f7;
  line-height: 1.5;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 4vw;
  background: #173c3c;
  color: #fff;
  flex-wrap: wrap;
}
header a {
  color: #fff;
}
a {
  color: #186a64;
  text-underline-offset: 3px;
}
.brand {
  font-weight: 750;
  text-decoration: none;
  font-size: 21px;
}
.brand span {
  font-weight: 400;
}
.environment {
  font-size: 12px;
  border: 1px solid #b5d3d0;
  padding: 3px 9px;
  border-radius: 4px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
}
nav form {
  margin: 0;
}
.quiet {
  background: transparent;
  border: 1px solid #bdd2d0;
}
main {
  max-width: 1280px;
  margin: 36px auto;
  padding: 0 24px;
}
h1 {
  font-size: 30px;
  letter-spacing: -0.6px;
  margin: 0;
}
h2 {
  font-size: 20px;
}
.page-heading {
  margin-bottom: 28px;
}
.muted,
small {
  color: #5c6f74;
}
.card {
  padding: 24px;
  border: 1px solid #d9e2e2;
  border-radius: 10px;
  background: #fff;
  margin: 20px 0;
}
.narrow {
  max-width: 600px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.metric h2 {
  font-size: 14px;
  font-weight: 550;
  text-transform: capitalize;
  color: #5c6f74;
}
.metric strong {
  font-size: 38px;
}
.metric {
  margin: 0;
}
section {
  margin: 28px 0;
}
label {
  display: block;
  font-weight: 600;
  margin: 16px 0;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #aebfc0;
  border-radius: 5px;
  background: #fff;
  color: inherit;
  margin-top: 6px;
}
textarea {
  min-height: 100px;
}
button,
.button {
  display: inline-block;
  cursor: pointer;
  font: inherit;
  border: 0;
  border-radius: 5px;
  padding: 10px 18px;
  background: #186a64;
  color: white;
  text-decoration: none;
}
button:hover,
.button:hover {
  filter: brightness(0.9);
}
:focus-visible {
  outline: 3px solid #e7a332;
  outline-offset: 3px;
}
.danger {
  background: #9e3634;
}
.search {
  display: flex;
  gap: 20px;
  align-items: end;
}
.search label:first-of-type {
  flex: 1;
}
.search label {
  margin: 0;
}
.table-wrap {
  overflow-x: auto;
  background: white;
  border: 1px solid #d9e2e2;
  border-radius: 8px;
  margin: 22px 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
th,
td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid #e6eded;
  vertical-align: top;
}
th {
  color: #5c6f74;
  background: #f9fbfb;
  font-weight: 650;
}
small {
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.status {
  background: #e8eeee;
  border-radius: 4px;
  padding: 3px 7px;
  white-space: nowrap;
}
dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
}
dt {
  color: #5c6f74;
}
dd {
  margin: 0;
  overflow-wrap: anywhere;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 12px;
}
.notice {
  padding: 16px;
  background: #fff2d7;
  border-radius: 6px;
}
footer {
  max-width: 1280px;
  margin: 50px auto 20px;
  padding: 0 24px;
  color: #5c6f74;
  font-size: 12px;
}
@media (max-width: 680px) {
  header {
    gap: 12px;
  }
  nav {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 16px;
  }
  .search {
    display: block;
  }
  .search label {
    margin: 15px 0;
  }
  dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  dd {
    margin-bottom: 12px;
  }
  .brand span {
    display: block;
    font-size: 14px;
  }
  main {
    padding: 0 16px;
  }
}
