/* Fixes left hand navigation */

ul.p-side-navigation__list {
    display: flex;
    flex-direction: column;
}

ul p {
    margin: 0;
}

/* Overwrite local toc to remove H1 and to style appropriately */

.localtoc {
  & > ul {
    margin-left: 0;
    padding-left: 0;

    & > li {
      list-style-type: none;
      margin-left: 0;
      padding-left: 0;

      & > a {
        display: none;
      }

      & > ul {
        margin-left: 0;
        padding-left: 0;
      }
    }
  }
}

div.localtoc ul {
    list-style: none;
    padding-left: 0;
}

div.toctree-wrapper ul li[class^="toctree-"] {
    display: block;
}