:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #202726;
  background: #f3f5f2;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header {
  height: 88px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9dfda;
  background: #fff;
}
.brand {
  font-size: 32px;
  font-weight: 750;
  text-decoration: none;
  color: inherit;
  letter-spacing: -2px;
}
.brand span {
  font-size: 12px;
  letter-spacing: 2px;
  margin-left: 20px;
  color: #66746c;
}
main {
  max-width: 1440px;
  margin: auto;
  padding: 42px 5% 70px;
}
h1 {
  font-size: 42px;
  letter-spacing: -1.8px;
  line-height: 1.15;
  margin: 10px 0 24px;
}
h2 {
  font-size: 19px;
  letter-spacing: -0.4px;
  margin: 0 0 24px;
}
p {
  line-height: 1.6;
  color: #68746d;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #557661;
  font-weight: 650;
}
.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heading > span {
  font-size: 13px;
  color: #758077;
}
.badge {
  display: inline-block;
  border-radius: 20px;
  padding: 7px 12px;
  background: #edf0ed;
  font-size: 13px;
}
.good {
  color: #176744;
  background: #e6f4e8;
}
.bad {
  color: #925523;
  background: #f9eddf;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 12px 0 30px;
}
.stats article {
  padding: 24px;
  background: white;
  border: 1px solid #e0e5df;
  border-radius: 12px;
}
.stats span {
  font-size: 14px;
  color: #6b766d;
}
.stats strong {
  display: block;
  margin-top: 14px;
  font-size: 40px;
  letter-spacing: -1px;
}
#online {
  color: #2c754b;
}
.panel {
  padding: 26px;
  background: #fff;
  border: 1px solid #e0e5df;
  border-radius: 12px;
  margin-bottom: 22px;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.toolbar h2 {
  margin-bottom: 10px;
}
.filters,
.fields {
  display: flex;
  gap: 12px;
}
.filters label {
  font-size: 12px;
}
.filters input {
  max-width: 220px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  font: inherit;
  border: 1px solid #ccd5ce;
  border-radius: 7px;
  padding: 11px 12px;
  margin-top: 7px;
  background: #fff;
  color: #25372a;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
button {
  font: inherit;
  font-size: 14px;
  border: 1px solid #ccd5ce;
  border-radius: 7px;
  padding: 11px 16px;
  background: #fff;
  color: #284532;
  cursor: pointer;
}
button:hover {
  background: #edf3ec;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.primary {
  background: #244b33;
  color: #fff;
  border-color: #244b33;
}
.primary:hover {
  background: #356744;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
}
th {
  font-weight: 500;
  color: #718074;
  font-size: 12px;
  padding: 14px 12px;
  background: #f6f8f4;
}
td {
  padding: 18px 12px;
  border-bottom: 1px solid #eaf0e9;
}
td small {
  display: block;
  color: #7b867d;
  margin-top: 5px;
}
.table-wrap {
  overflow: auto;
}
.setup {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
}
.setup .panel {
  margin: 0;
}
.fields > * {
  width: 50%;
}
#login {
  max-width: 430px;
  margin: 32px auto 50px;
}
#login form {
  margin-top: 32px;
}
#login button {
  width: 100%;
}
#notice:not(:empty) {
  padding: 15px;
  background: #fff4df;
  border-radius: 8px;
  color: #77511f;
}
#credential {
  margin-top: 24px;
}
textarea {
  min-height: 76px;
  margin-bottom: 16px;
}
footer {
  padding: 24px 5%;
  border-top: 1px solid #d9dfda;
  font-size: 13px;
  color: #77837b;
  display: flex;
  justify-content: space-between;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #92bfa0;
  outline-offset: 3px;
}
@media (max-width: 1000px) {
  .setup {
    grid-template-columns: 1fr 1fr;
  }
  .toolbar {
    align-items: start;
    flex-direction: column;
  }
  .filters {
    flex-wrap: wrap;
  }
}
@media (max-width: 650px) {
  header {
    padding: 0 20px;
  }
  .brand span {
    display: none;
  }
  main {
    padding: 25px 20px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .setup {
    grid-template-columns: 1fr;
  }
  .heading {
    display: block;
  }
  h1 {
    font-size: 34px;
  }
  .filters > * {
    flex: 1 1 130px;
  }
  .panel {
    padding: 18px;
  }
  .stats article {
    padding: 18px;
  }
}
