:root {
  color-scheme: light dark;
  font:
    16px/1.6 system-ui,
    sans-serif;
}
body {
  margin: 0;
  color: #172d27;
  background: #f3f6f5;
}
main {
  max-width: 960px;
  padding: 32px 20px 72px;
  margin: auto;
}
a {
  color: #11644e;
  overflow-wrap: anywhere;
}
h1 {
  font-size: clamp(1.5rem, 5vw, 2rem);
}
section {
  margin-top: 32px;
  scroll-margin-top: 84px;
}
pre {
  padding: 20px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font:
    13px/1.7 ui-monospace,
    monospace;
  background: #fff;
  border-radius: 8px;
}
details {
  margin: 8px 0;
  border: 1px solid #bfcfc8;
  border-radius: 8px;
  background: #fff;
}
summary {
  padding: 14px;
  cursor: pointer;
  overflow-wrap: anywhere;
}
summary:focus-visible,
a:focus-visible {
  outline: 3px solid #20765e;
  outline-offset: 3px;
}
details pre {
  margin: 0;
}
@media (prefers-color-scheme: dark) {
  body {
    color: #e1ebe6;
    background: #14221d;
  }
  a {
    color: #8fe0be;
  }
  pre,
  details {
    background: #1e3028;
  }
}

.notice-toolbar {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: max(12px, env(safe-area-inset-top)) 20px 12px;
  background: inherit;
  border-bottom: 1px solid #bfcfc8;
}
.notice-toolbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 650;
  text-decoration: none;
}
.notice-toolbar svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
