* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: sans-serif;
      overflow-x: hidden;
      background-color: #100e16;
      color: #c1bdcf;
      padding-left: 64px;
      padding-right: 64px;
      padding-bottom: 64px;
      padding-top: 32px;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: linear-gradient(45deg, #3d3846, #241f31);
      color: white;
      display: flex;
      align-items: center;
      padding: 0 20px;
      z-index: 1000;
    }

    #toggle-sidebar {
      display: none;
    }

    label[for="toggle-sidebar"] {
      cursor: pointer;
      font-size: 24px;
      margin-right: 20px;
      user-select: none;
    }

    aside {
      position: fixed;
      top: 60px;
      left: 0;
      width: 200px;
      height: calc(100vh - 60px);
      background: #1e1a26;
      padding: 20px;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 1001;
    }

    #toggle-sidebar:checked ~ aside {
      transform: translateX(0);
    }

    .overlay {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      height: calc(100vh - 60px);
      background-color: rgba(17, 15, 21, 0.9);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 1000;
    }

    #toggle-sidebar:checked ~ .overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .wrapper {
      margin-top: 60px;
      padding: 20px;
      position: relative;
      z-index: 0;
    }

    aside ul {
      list-style: none;
    }

    aside ul li {
      margin-bottom: 10px;
    }

    aside a {
      text-decoration: none;
      color: #fff;
    }
    
    h2 {
    color: #FFF;
    border-bottom: 2px solid #3d3846;
    margin-bottom: 8px;}
    
    .imagealign {
    text-align: center;
    }
    
    body ul {
      padding-left: 2em;
    }
    
    /* Anything past here is for the catalog page.*/
    
    summary {
      color: #FFF;
      font-weight: bold;
    }
    
    details {
      color: #FFF;
      margin-bottom: 4px;
    }
    
    ul {
      padding-left: 2em;
    }
    
    .infobox {
      border-style: solid;
      border-width: 2px;
      border-color: #222;
      background: #222;
      font-family: monospace;
      font-size: 10px;
      margin-top: 4px;
      margin-bottom: 4px;
    }
    
    .summarybox > details {
      background: #222;
      border-style: solid;
      border-width: 2px;
      border-color: #333;
      padding: 8px;
    }
    
    .summarybox > details:hover {
      background: #444;
      border-color: #777;
    }
    
    .summarybox > details:open {
      padding-bottom: 8px;
      background: #222;
      border-color: #333;
    }
    
    .ltc-box > details {
     background: #16131f;
     border-style: none;
     border-radius: 8px;
     padding: 8px;
    }
    
    .ltc-box > details:hover {
    background: #16131f;
     border-style: none;
     padding: 8px;
    }
    
    .ltc-box > details:open {
      padding-bottom: 8px;
      background: #16131f;
      border-color: #000;
    }
    
    .quotebox {
     font-style: italic;
    }