body {
    --bg: #fffdf2; 
    font-family: Georgia, serif;
    max-width: none;
    background-color: var(--bg);
    /* background-color: #fffbe6; */
    /* classic legal pad #fff8cc */
    /* slightly warmer  #fff6bf */
    /* very subtle #fffbe6 */
}

.usa-sidenav,
.usa-sidenav__item,
.usa-sidenav__item a,
.usa-table,
.usa-table th,
.usa-table td,
.usa-header,
.usa-footer {
  background-color: var(--bg);
}

.site-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px; /* optional */
}

@media (max-width: 767px) {
  .site-sidebar {
    display: none !important;
  }

  .site-main {
    margin-left: 0 !important;
    padding-left: 0 !important;

    /* common culprits that keep it skinny/off */
    width: auto !important;
    max-width: none !important;

    /* if you used positioning for desktop layout */
    left: auto !important;
    position: static !important;
  }
}

/* make the content not take up the entire page width--leave space to the right */
.content {
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
    font-size: 18px;
}

.usa-header {
  font-family: Georgia, serif;
  padding-left: 0;
  margin-left: 0;
  height: 50px; /* moves text underneath closer */
}

.usa-nav-container {
  padding-left: 0;
  margin-left: 20rem;
}

.usa-footer__copyright {
    font-family: Georgia, serif;
    margin-left: 20rem;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
}

/* Sidebar */
.site-sidebar {
  position: fixed;
  width: 18rem;
  overflow-y: auto;
  top: 80px;
  left: 0;
  height: 100vh;
  padding: 1rem;
  z-index: 100;
}

/* Main content */
.site-main {
  margin-left: 18rem;
  padding: 2rem;
}

.usa-legend {
    font-size: 1.2rem;
    font-weight: bold;
}

.usa-step-indicator {
  background-color: var(--bg);
}

/* Replace the white halo around the step counters */
.usa-step-indicator--counters-sm .usa-step-indicator__segment::before {
  box-shadow: 0 0 0 0.25rem var(--bg);
}

.stepper-wrap {
  background: var(--bg);
}

/* Make unfinished step counters match the stepper background */
.usa-step-indicator--counters-sm
  .usa-step-indicator__segment:not(.usa-step-indicator__segment--complete):not(.usa-step-indicator__segment--current)::before {
  background-color: var(--bg);
}

.usa-checkbox {
  background-color: var(--bg);
}

/* make the license box wider */
#license-box::-webkit-scrollbar {
  width: 20px;
}

#license-box::-webkit-scrollbar-thumb {
  background-color: #8a8a8a;
  border-radius: 20px;
  height: 40px;
  border: 3px solid #f0f0f0; /* makes the thumb within the scrollbar track */
}

#license-box::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}
