:root {
  font:
    14px/1.6 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #202a2e;
  background: #f5f7f6;
}
* {
  box-sizing: border-box;
}
body {
  max-width: 1180px;
  margin: auto;
  padding: 48px 36px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
h1 {
  font-size: 36px;
  letter-spacing: -1px;
  margin: 3px 0;
}
h2 {
  font-size: 18px;
  margin: 0 0 12px;
}
p {
  color: #65716c;
  margin: 4px 0 18px;
}
.eyebrow {
  color: #54776a;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
}
.badge {
  padding: 8px 13px;
  border: 1px solid #d8e2dc;
  border-radius: 20px;
  font-size: 12px;
}
section {
  border: 1px solid #e0e6e2;
  border-radius: 14px;
  padding: 24px;
  background: white;
  margin-bottom: 20px;
}
#login {
  max-width: 550px;
}
label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}
.login-row {
  display: flex;
  gap: 10px;
}
input {
  padding: 11px;
  border: 1px solid #ccd6d0;
  border-radius: 8px;
  flex: 1;
  min-width: 0;
}
button {
  border: 0;
  border-radius: 8px;
  background: #244b3d;
  color: white;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}
button:hover {
  filter: brightness(1.1);
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.secondary {
  background: #eaf0ec;
  color: #355145;
}
nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
#updated {
  margin-left: auto;
  font-size: 12px;
  color: #65716c;
}
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.card {
  border: 1px solid #e0e6e2;
  border-radius: 10px;
  padding: 18px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.card code {
  display: block;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 12px;
  color: #65716c;
}
.card button,
.item button {
  padding: 5px 10px;
  font-size: 12px;
  margin-top: 10px;
  background: #f6ece8;
  color: #89482d;
}
.item {
  padding: 12px 0;
  border-bottom: 1px solid #eef1ee;
}
.item small {
  display: block;
  color: #65716c;
}
.table-scroll {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid #edf1ee;
  font-size: 12px;
  white-space: nowrap;
}
th {
  color: #65716c;
  font-weight: 500;
}
#error {
  color: #a13a25;
}
footer {
  font-size: 12px;
  color: #77877e;
}
#count {
  font-weight: 400;
  color: #65716c;
}
button:focus-visible,
input:focus-visible {
  outline: 2px solid #52816a;
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
@media (max-width: 650px) {
  body {
    padding: 24px 16px;
  }
  header {
    align-items: flex-start;
    gap: 12px;
  }
  .badge {
    white-space: nowrap;
    font-size: 10px;
  }
  .columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  section {
    padding: 18px;
  }
  h1 {
    font-size: 30px;
  }
}
form label {
  margin-bottom: 14px;
}
form label > input,
form label > select {
  display: block;
  width: 100%;
}
select {
  padding: 10px;
  border: 1px solid #ccd6d0;
  border-radius: 8px;
  background: white;
  font: inherit;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  padding: 16px;
  background: #f5f7f6;
  border-radius: 8px;
  font-size: 12px;
}
a {
  color: #244b3d;
}
.steps {
  padding-left: 22px;
}
.steps li {
  margin-bottom: 12px;
}
#notice {
  color: #244b3d;
}
