:root {
  --theme-color: #6F3075;
}
*,
.anchor span {
  color: var(--text_color);
}
a {
  text-decoration: none;
}
.markdown-section a,
.markdown-section p a, 
.markdown-section p a strong,
.markdown-section li a, 
.markdown-section li a strong  {
  color:rgb(34, 139, 34) !important;
}

.markdown-section p {
  font-size: 1.125rem;
  line-height: 1.7;
}
.markdown-section h1, .markdown-section h2, .markdown-section h3, .markdown-section h4, .markdown-section strong {
  color: var(--text_color);
}
.nav {
  width: var(--toc-width, 15rem);
  align-self: flex-start;
  flex: 0 0 auto;
}
.page_toc {
  max-width: 18rem;
  top: calc(9.5rem);
  width: 20rem;
  overflow: auto;
}
.nav .page_toc p:nth-child(1) {
  color: #78757a;
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  margin-top: 0rem;
  text-transform: uppercase;
}
.sidebar {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 312px;
  height: 100vh;
  padding: 24px;
  border-right: 1px solid #dee2e7;
  overflow-y: auto;
  top: 0;
}
.sidebar > .app-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
  width: 100%;
}
.sidebar .app-name .app-name-link:hover {
  background-color: #fa5e5a;
}
.sidebar ul li > a {
  padding: 0px 10px;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0px 10px;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  font-weight: 400;
  -webkit-letter-spacing: 0.1em;
  -moz-letter-spacing: 0.1em;
  -ms-letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  /* text-transform: uppercase; */
  color: var(--text_color);
}
.sidebar ul li.active > a {
  background: #f5f5f5;
}

.sidebar li > p {
  margin: 0;
  font-weight: bold;
  -webkit-letter-spacing: 0.142em;
  -moz-letter-spacing: 0.142em;
  -ms-letter-spacing: 0.142em;
  letter-spacing: 0.142em;
  text-transform: uppercase;
  color: inherit;
}
.sidebar .app-name .app-name-link {
  background-color: #fecf72;
  border-radius: 4px;
  border-width: 0;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 12px;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.54;
  font-weight: 600;
  outline: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.markdown-section h1 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: #2f353f;
}
.search {
  margin-bottom: 20px;
  padding: 6px;
  border-bottom: none;
}
.search input {
  width: 100%;
  background-color: #f5f5f5;
  padding-left: 2rem;
}
#CHANGELOG,
.app-nav {
  background-color: transparent !important;
}

#CHANGELOG_RENDERER {
  width: 700px;
}
#CHANGELOG_RENDERER * {
  color: var(--theme-color);
}
#CHANGELOG_RENDERER .CL_content-body ul {
  list-style-type: none; /* Remove default bullet points */
  padding-left: 0; /* Optional: Adjust spacing */
}
#CHANGELOG_RENDERER .CL_content-body ul li::before {
  content: '✔'; /* Add a tick icon before each list item */
  color: green; /* Style the tick */
  margin-right: 8px; /* Add spacing after the tick */
}

#CHANGELOG_RENDERER .CL_content-body li {
  padding-left: 1.3em !important;
}
#CHANGELOG_RENDERER .CL_content-body ul li p {
  display: inline !important; /* Makes the <p> behave like inline text */
  padding-left: 5px !important;
}
#CHANGELOG_RENDERER .CL_content-body ul li ul li {
  padding-left: 1.3em !important;
}
#CHANGELOG_RENDERER .CL_content-body ol {
  padding-left: 0.2em !important;
  list-style-type: decimal !important;
}

@media screen and (max-width: 768px) {
  #CHANGELOG_RENDERER {
    width: 400px;
  }
  #CHANGELOG:hover {
    background: #fff2dc;
  }

  #CHANGELOG {
    margin: 1rem;
    position: absolute;
    left: 0;
  }
  .sidebar {
      left: -312px;
  }
  .sidebar-toggle {
      padding: 10px;
  }
}

@media screen and (min-width: 768px) {
    .sidebar {
        position: -webkit-sticky;
        position: sticky;
    }
}
