:root {
  color-scheme: light;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  color: #1c2a22;
  background: #f4f1e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.shell {
  width: min(48rem, calc(100% - 2rem));
  margin: 2rem auto;
  padding: 1.25rem;
  border: 1px solid #9ba59e;
  border-radius: 0.5rem;
  background: #fff;
}

.page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cbd1cc;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.25rem;
}

h2 {
  margin-top: 1.5rem;
}

.eyebrow,
.hint {
  color: #56645b;
  font-size: 0.9rem;
}

.eyebrow {
  margin-bottom: 0;
}

.command-form {
  display: grid;
  gap: 0.5rem;
}

label {
  margin-top: 0.5rem;
  font-weight: 700;
}

input,
select,
button,
.button {
  min-height: 2.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid #52645a;
  border-radius: 0.25rem;
  font: inherit;
}

input,
select {
  width: 100%;
  color: inherit;
  background: #fff;
}

.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  color: #fff;
  background: #245c3c;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: #18452c;
}

.button-secondary {
  color: #1c2a22;
  background: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #edf1ee;
}

.hint {
  margin: 0 0 0.25rem;
}

.notice {
  padding: 0.75rem;
  border-left: 0.3rem solid;
}

.notice-ok {
  border-color: #28734a;
  background: #e8f4ec;
}

.notice-error {
  border-color: #9c3028;
  background: #f9ebe9;
}

pre {
  max-width: 100%;
  padding: 1rem;
  overflow: auto;
  border: 1px solid #aab3ad;
  background: #f7f8f7;
}

@media (max-width: 36rem) {
  .shell {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}
