#wrapper {
  overflow-x: hidden;
}

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -20rem;
  transition: margin 0.25s ease-out;
  background-color: #F5F5F8;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#sidebar-wrapper .menu {
  width: 20rem;
}

#sidebar-wrapper .download-pdf {
  text-decoration: none;
  color: #E0E0E0;
  font-weight: bold;
}

#sidebar-wrapper .item1 {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
#sidebar-wrapper .item2 {
  margin-left: 1.0rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
#sidebar-wrapper .item3 {
  margin-left: 1.5rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
#sidebar-wrapper .item-to-top {
  margin-left: 0.5rem;
  margin-top: 2.5rem;
}

#index-container {
  height: 5px;
  overflow-y: scroll;
}

#page-content-wrapper {
  min-width: 100vw;
}

#content-iframe-wrapper {
  background: #F5F5F8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#content-iframe {
  height: 5px;
  background: white;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
  margin-left: 0;
}

/* ── DG Brand Logo (top-right of navbar) ─────────────────────────── */
/* Structure only — sizes/offsets are injected per-document via       */
/* <style id="brand-style"> computed from config.json brand_* keys.  */
#dg-brand {
  position: relative;   /* anchor for absolutely-positioned text */
  margin-left: auto;    /* push block to the right edge */
  padding: 0 4px;
  align-self: stretch;  /* fill full navbar height */
  display: flex;
  align-items: center;  /* center logo vertically within the bar */
  flex-shrink: 0;
}

#dg-logo {
  width: auto;          /* preserve aspect ratio; height set by brand-style */
  display: block;
}

#dg-brand-text {
  position: absolute;   /* does NOT widen container beyond logo width */
  left: 0;
  right: 0;             /* spans exactly the logo's natural rendered width */
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #555;
  line-height: 1;
  /* font-size and bottom set by brand-style */
}
/* ─────────────────────────────────────────────────────────────────── */

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }
  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }
  body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: -20rem;
  }
}