<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">nav {
  margin-bottom: 0rem;
}
/*Documentation */

#doc-body h1,
h2,
h3 {
  color: black;
}

p {
  margin-top: 2px;
  margin-bottom: 5px;
}

.menu {
  color: #ac4142;
  font-weight: bold;
}

.note {
  color: orangered;
  font-weight: bold;
}

/* Styling for the table of contents */
#toc {
  /* overflow-y: auto; */
  background-color: #f6f6f6;
  padding: 1rem;
  border: 1px solid #ccc;
  width: 100%;
  height: 100%;
}

#toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#toc li {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

#toc a {
  color: #333;
  text-decoration: none;
}

#toc a:hover {
  text-decoration: underline;
}

#documentation {
  line-height: 1.5;
  width: 100%;
}

#documentation h1 {
  margin-top: 0rem;
}

#documentation h2 {
  margin-top: 1.5rem;
}

/* Styling for small screens */
@media (max-width: 600px) {
  #toc {
    position: static;
    max-width: none;
    margin-bottom: 1rem;
  }

  #documentation {
    margin-left: 0;
    max-width: none;
  }

  .flex {
    display: inline-block;
  }
}

@media (min-width: 600px) {
  #doc-body {
    overflow: hidden;
  }

  #toc {
    width: 20%;
    height: 92vh;
    overflow: scroll;
  }

  #documentation {
    width: 80%;
    height: 92vh;
    overflow: scroll;
  }
}

@media print {
  .pagebreakafter,
  .documentation {
    width: 100% !important;
    height: 100% !important;
  }

  #docs-wrapper {
    flex-direction: column;
  }

  #toc {
    border: none;
  }
}
</pre></body></html>