      .form-control-dark {
        border-color: var(--bs-gray);
      }

      .form-control-dark:focus {
        border-color: #fff;
        box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
      }

      .text-small {
        font-size: 85%;
      }

      .dropdown-toggle:not(:focus) {
        outline: 0;
      }

      p {
          margin-top: 0;
          margin-bottom: 1rem;
      }
      .fs-5{
          font-size: 1.15rem!important;
      }
      body {
        padding-top: 0rem;
        padding-bottom: 0rem;
        color: rgb(var(--bs-tertiary-color-rgb));
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
      }

      :root {
        font-size: 100%;
        --light-gray: rgb(162, 169, 177);
        --blue: rgb(6, 69, 173);
        --white-bone: rgb(248, 249, 250);
        --light-black: rgb(32, 33, 34);
      }

      .main-title {
        padding: .5em 0;
        border-bottom: 1px solid var(--light-gray);
        margin-bottom: 30px;
        font-family: 'Georgia', serif;
        font-size: clamp(2.3rem, 3vw, 2.88rem);
        font-weight: 500;
      }

      .table-of-contents {
        max-width: 400px;
        padding: .25ch;
        font-size: 1.1rem;
        background: var(--white-bone);
      }

      .table-narrow {
        width: 400px;
      }

      .list-invisible {
        display: none;
      }

      .wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 4px 0;
      }

      .table__title {
        font-size: 1.2rem;
        margin-bottom: 0px;
      }

      .toggle-wrapper::before {
        content: '[';
        color: var(--light-black);
      }

      .toggle-wrapper::after {
        content: ']';
        color: var(--light-black);
      }

      .toggle {
        padding: 0;
        border: none;
        font-size: 1.2rem;
        color: var(--blue);
        background-color: inherit;
      }

      .toggle:hover {
        text-decoration: underline var(--blue);
        cursor: pointer;
      }

      .toggle:focus {
        border: 1px dotted var(--blue);
        text-decoration: underline var(--blue);
      }

      .toggle:active {
        border: none;
        text-decoration: none;
      }

      .table__list,
      .table__nested-list {
        list-style: none;
      }

      .content__number {
        margin-right: .5ch;
        color: var(--light-black);
      }

      .table__list {
        padding: 0;
      }

      .table__nested-list {
        padding-left: 3ch;
      }

      .table__link {
        color: var(--blue);
        line-height: 1.6;
        text-decoration: none;
      }

      .table__link:active {
        color: rgb(245, 194, 66);
      }

      .table__link:hover {
        text-decoration: underline var(--blue);
      }