@import 'https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Geist+Mono:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap';
html, body {
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: hidden;
  box-sizing: border-box;
  margin-bottom: 0em !important;
  background-color: rgb(239, 239, 239);
}

* {
  font-family: "Bricolage Grotesque", "Geist Mono", "Inter", "Noto Color Emoji";
}

main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 90vh;
}

.left-panel {
  display: flex;
  flex-direction: column;
  max-width: 20%;
  max-height: 90vh;
  border-right: 1px solid rgba(135, 135, 135, 0.3);
}
.left-panel .table-of-content {
  flex: 0 1 auto;
  overflow-y: auto;
  height: 81vh;
  padding-right: 1em;
}
.left-panel .table-of-content::-webkit-scrollbar {
  display: none;
}
.left-panel .table-of-content hr {
  border: none;
  background-color: rgba(191, 191, 191, 0.2588235294);
  color: rgba(191, 191, 191, 0.2588235294);
  height: 1px;
}
.left-panel .table-of-content ul, .left-panel .table-of-content ol, .left-panel .table-of-content li {
  margin: 0.5em 0em;
  padding: 0;
}
.left-panel .table-of-content ol p {
  font-size: larger;
  font-weight: 500;
}
.left-panel .table-of-content ul li {
  list-style: none;
  border: 1px solid rgba(195, 194, 194, 0.3);
  border-radius: 0.5em;
  padding: 0.3em 1em 0.3em 2em;
  background-color: rgb(243, 243, 243);
}
.left-panel .table-of-content ul li:hover {
  background-color: rgb(230, 230, 230);
  transition: 0.5s;
  cursor: pointer;
}
.left-panel .statusbar {
  flex: 0 1 auto;
  height: 9vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.left-panel .statusbar p {
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.left-panel .statusbar #progress-container {
  width: 80%;
  border: 1px solid rgb(206, 206, 206);
  height: 20px;
  background-color: #EFEFEF;
  border-radius: 10px;
  position: relative;
  overflow: visible;
}
.left-panel .statusbar #progress-container .progress-fill {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #4caf50;
  border-radius: 10px;
  transition: width 0.5s ease;
  overflow-x: visible;
}
.left-panel .statusbar #progress-container p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.google-ad {
  min-width: 20%;
  min-height: 90vh;
}

.icon {
  margin-right: 8px;
  vertical-align: middle;
}

.content {
  width: 60%;
  max-height: 90vh;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  justify-content: space-between;
}

article {
  max-height: 90vh;
  overflow-y: scroll;
}

article::-webkit-scrollbar {
  display: none;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

button {
  background-color: rgb(57, 89, 251);
  padding: 1em;
  width: 7em;
  height: 3.5em;
  border: 1px solid white;
  border-radius: 0.5em;
  color: white;
  font-weight: 600;
  font-size: large;
}

ul li[style="background-color: green;"] {
  color: white; /* Optional, improve readability */
}

.paid-message {
  text-align: center;
  color: #555;
}

button:hover {
  cursor: pointer;
}

@media (min-width: 600px) {
  body {
    margin: 2% 2%;
  }
  .desktop-links {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .container {
    flex-direction: row !important;
  }
}/*# sourceMappingURL=styles.css.map */