/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*
* {
  margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}
/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* -------------- NAVBAR ------------------- */
.navbar {
  display: flex;
  background-color: #30323D;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 90vw;
  width: 100%;
  margin: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  justify-self: start;
}

.logo img{
  width: 12vw;
}

.nav-links {
  justify-self: center;
  font-size: 1vw;
}

.nav-links ul{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links ul li{ 
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 3px;
}

.nav-links ul li a{
  color: #E8E9F3;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 2px;
  padding-bottom: 3px;

}

.nav-links ul li a:hover {
  color: #8FE388;
}

.nav-icon {
  height: 12px;
  width: 12px;
}

.nav-drop-menu {
  position: relative;
}

.nav-drop-menu-content {
  position: absolute;
  top: 3rem;
  background-color: #30323D;
  min-width: max-content;
  padding: 1rem 2rem;
  gap: 1rem;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0rem 0rem 0.5rem 0.5rem;
}

.nav-drop-menu:hover .nav-drop-menu-content {
  display: flex;
}

.nav-drop-menu:hover .nav-icon {
  transform: rotate(180deg);
}


.nav-button {
  justify-self: end;
  width: fit-content;
  color: #30323D;
  font-size: .8vw; 
  font-weight: 700;
}

.nav-button:hover {
  outline: 2px solid #E8E9F3;
  color: #fff;
  background-color: #006B8F;
}

.nav-drop-menu {
}

.nav-drop-menu:hover {
  border-bottom: 3px solid #8FE388;
  padding-bottom: 0px;
}


.nav-menu-icon {
  display: none;
}

.nav-mobile {
  display: none;
}

@media (max-width: 860px) {

  .nav-container {
    min-height: 3.5rem;
    display: flex;
    justify-content: space-between;
  }

  .logo {
    justify-self: auto;
  }
  
  .nav-mobile {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    position: absolute;
    min-height: calc(100vh - 3rem);
    top: 5rem;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    
    color: #E8E9F3;
    background-color: #30323D;
    padding: 2rem 0rem;
    gap: 2rem;
  }  

  .nav-mobile ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    
  }

  .nav-mobile-logo img{
    height: 3rem;
    width: 12rem;
  }

  .nav-mobile ul li {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 0rem;
    border-bottom: 1px solid rgba(232, 233, 243, 0.25);
  }
  
  .nav-mobile ul li:hover {
    background-color: rgba(232, 233, 243, 0.15);
  }
  
  .nav-mobile ul li > a {
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    padding: 0rem 2rem;
  }
  
  .nav-mobile-drop-menu a {
    display: flex;
    align-items: center;
  }
  
  .nav-mobile-drop-menu span {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .nav-mobile-drop-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
  }
  
  .nav-mobile-drop-menu-content a {
    font-weight: 500;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    display: flex;
    align-items: center;
  }
  
  .nav-mobile-button {
    align-self: center;
    display: block;
    width: fit-content;
    color: #30323D;
    background-color: #8FE388;
    padding: 14px 1.5rem;
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 700;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-menu-icon {
    display: block;
  }
  
  .nav-button {
    display: visible;
    justify-self: auto;
  }

    .nav-links {
    position: fixed;
    top: 64px;
    left:0;
    width: 100%;
    height: 100vh;
    background-color: #30323D;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-links ul li {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: fit-content;
    width: 100%;
    padding: 1.5rem 3px;
  }

  .nav-links ul li:hover {
    background-color: #3d404c;
  }
  
}


.button-extension {
  font-size: 1vw;
  font-weight: 600;
  background-color: #006B8F;
  color: #fff;
  padding: 1vh 2vh;
  border-radius: 0.5rem;
  width: fit-content;
}

.button-extension:hover{
  background-color:#30323D;
}

/* --------------Footer------------------------- */

footer {
  
  background-color: #30323D;
}

.footer-container {
  max-width: 90vw;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.footer-content {
  
  display: flex;
  justify-content: space-between;
  padding-bottom: 4rem;
}

.footer-links {
  min-width: fit-content;
  width: 100%;
  color: #E8E9F3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.7rem 3rem;

}

.footer-links-section {
  padding: 0rem 0.5rem;
}


.footer-links-section h3{
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5vw;
  color: rgba(232, 233, 243, 0.85);
  padding-bottom: 2rem;
}

.footer-links-section ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-weight: 700;
  color: #FFF;

}

.footer-links-section ul li {
  font-size: 1vw;
}

.footer-links-section a:hover {
  color: #8FE388;
}


.footer-waitlist {
  width: 45%;
  padding: 0.5rem 2rem;
  color: #30323D;
  display: flex;
  flex-direction: column;
  text-align: end;
  align-items: end;
}

.footer-waitlist form {
  display: flex;
  min-width: 90%;
  flex-direction: column;
}

.footer-waitlist input[type=email], input[type=text] {
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background: #FFF;
  margin: 1rem 0rem;
}

.footer-waitlist h2{
  font-size: 1.5vw;
  font-weight: 700;
  color: #E8E9F3;
  margin-bottom: 1.5rem;
}

.certification-logos {
  display: flex;
  justify-content: flex-end; /* keeps them aligned to the right */
  align-items: center;
  gap: 1rem; /* spacing between logos */
  flex-wrap: wrap; /* optional: ensures responsiveness */
}

.certification-logos img {
  height: 5rem; /* same as h-20 */
  width: auto;
  transition: transform 0.2s ease-in-out;
}

.certification-logos img:hover {
  transform: scale(1.05);
}

input[type=submit] {
  color: #30323D;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: #B1E5F2;
  font-weight: 700;
  font-size: 1vw;
  padding: .5vh 1vh;
  margin-left: auto;
}

hr.rounded {
  border-top: 1px solid #E8E9F3;
  border-radius: 5px;
}

.footer-start {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  font-style: normal;
  font-weight: 700;
  background-image: linear-gradient(90deg,#58BC82, #E8E9F3);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-start h1 {
  font-size: clamp(1rem, 4vw, 2rem); 
  margin-bottom: 0.5rem;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #e4e4e7;
  font-size: 0.875rem;
}

.socials a {
  color: #e4e4e7;
  text-decoration: underline;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.socials svg {
  color: #e4e4e7;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.socials a:hover,
.socials a:focus {
  color: #ffffff;
  outline: none;
  transform: scale(1.1);
}

.socials > * {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #e4e4e7 !important;
  margin: 0.5rem;
}

.socials a:hover svg,
.socials a:focus svg {
  transform: scale(1.1);
  color: #ffffff;
  transition: transform 0.3s ease;
}

.socials:hover img,
.socials:focus img {
  transform: scale(1.1);
  color: #ffffff;
  transition: transform 0.3s ease;
}


.footer-end {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
}

.copyright {
  color: #E8E9F3;
  font-size: 1vw;
  padding: 1rem;
}

.footer-mobile-links {
  display: none;
}


.section-legal {
  background-color: #ffffff;
  color: #111827;
}

html.dark .section-legal {
  background-color: #0d1117;
  color: #e8e9f3;
}


.legal {
/* Adjust the max-width as needed */

}

.legal-container {
  z-index: 2;
  max-width: 80vw;
  margin: 2rem auto;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.legal-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal h1{
  text-align: center;
  font-size: 3.5vh;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.legal h2{
  text-align: center;
  font-size: 2.5vh;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  line-height: 3.25rem;
  background-image: linear-gradient(90deg,#58A3C8, #58BC82);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 3vh;
}

.legal h3{
  padding: 1rem;
  font-size: 2.5vh;
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.legal-text {
  text-align: left;
  font-size: 2.5vh;
  font-style: normal;
  max-height: 40hv;
  color: #30323D;
  padding: 1rem;
}

.legal p {
  text-align: left;
}

/* Legal Pages Styling */

/* Main legal section container */
.section-legal {
  min-height: 100vh;
  padding: 2rem 0;
}


.legal-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #58BC82;
}

.legal-message {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.025em;
}

/* Content area */
.legal-text {
  padding: 3rem 2rem 2rem;
  margin-top: 20px;
}

@media (max-width: 860px) {

  .legal-container {
    width: 100%;
    max-width: 100%;
      margin: 0rem;
    }


  .footer-content > .logo {
    display: none;
  }

  .footer-container {
    padding: 2rem 0rem;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    display: none;
  }

  .footer-mobile-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #FFF;
    padding: 2rem 0rem;
  }

  .footer-mobile-links-section {
    border-top: 1px solid rgba(232, 233, 243, 0.25);
    border-bottom: 1px solid rgba(232, 233, 243, 0.25);
    padding: 2rem;

  }
  .footer-mobile-links-section h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
  }
  .footer-mobile-links-section h3 span{
    font-size: 1.5rem;
    font-weight: 700;
  }

  .footer-mobile-links-section li {
    padding-top: 2rem;
    padding-left: 2rem;
    
  }

  .footer-start {
    flex-direction: column;
    text-align: center;
  }

  .footer-start h1 {
    font-size: 2rem;
  }

  .footer-end {
    flex-direction: column;
    text-align: center;
  }

  .copyright {
    font-size: .8rem;
  }

  .footer-waitlist {
    width: 100%;
  }

  .footer-waitlist h2{
    font-size: 1.4rem;
  }

}


/* Sidebar link transitions */
.sidebar a {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Custom color utilities */
.bg-customGray {
  background-color: #30323D;
}

.text-customGreen {
  color: #8FE388;
}

.hover\:bg-customGray:hover {
  background-color: #30323D;
}

.hover\:text-customGreen:hover {
  color: #8FE388;
  text-decoration: none;
}

:root,
[data-color-mode=light][data-light-theme=light],
[data-color-mode=dark][data-dark-theme=light] {
  --color-canvas-default-transparent: rgba(255, 255, 255, 0);
  --color-prettylights-syntax-comment: #6e7781;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-entity: #8250df;
  --color-prettylights-syntax-storage-modifier-import: #24292f;
  --color-prettylights-syntax-entity-tag: #116329;
  --color-prettylights-syntax-keyword: #cf222e;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-variable: #953800;
  --color-prettylights-syntax-string-regexp: #116329;
  --color-prettylights-syntax-markup-deleted-text: #82071e;
  --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
  --color-prettylights-syntax-markup-inserted-text: #116329;
  --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
  --color-prettylights-syntax-constant-other-reference-link: #0a3069;
  --color-fg-default: #30323D;
  --color-fg-muted: #57606a;
  --color-canvas-default: #fff;
  --color-canvas-subtle: #f6f8fa;
  --color-border-default: #d0d7de;
  --color-border-muted: #d8dee4;
  --color-neutral-muted: rgba(175, 184, 193, 0.2);
  --color-accent-fg: #0969da;
  --color-accent-emphasis: #0969da;
  --color-danger-fg: #cf222e;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme=light] {
    --color-canvas-default-transparent: rgba(255, 255, 255, 0);
    --color-prettylights-syntax-comment: #6e7781;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-entity: #8250df;
    --color-prettylights-syntax-storage-modifier-import: #24292f;
    --color-prettylights-syntax-entity-tag: #116329;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-variable: #953800;
    --color-prettylights-syntax-string-regexp: #116329;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
    --color-prettylights-syntax-markup-inserted-text: #116329;
    --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-fg-default: #24292f;
    --color-fg-muted: #57606a;
    --color-canvas-default: #fff;
    --color-canvas-subtle: #f6f8fa;
    --color-border-default: #d0d7de;
    --color-border-muted: #d8dee4;
    --color-neutral-muted: rgba(175, 184, 193, 0.2);
    --color-accent-fg: #0969da;
    --color-accent-emphasis: #0969da;
    --color-danger-fg: #cf222e;
  }
}

@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme=light] {
    --color-canvas-default-transparent: rgba(255, 255, 255, 0);
    --color-prettylights-syntax-comment: #6e7781;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-entity: #8250df;
    --color-prettylights-syntax-storage-modifier-import: #24292f;
    --color-prettylights-syntax-entity-tag: #116329;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-variable: #953800;
    --color-prettylights-syntax-string-regexp: #116329;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
    --color-prettylights-syntax-markup-inserted-text: #116329;
    --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-fg-default: #24292f;
    --color-fg-muted: #57606a;
    --color-canvas-default: #fff;
    --color-canvas-subtle: #f6f8fa;
    --color-border-default: #d0d7de;
    --color-border-muted: #d8dee4;
    --color-neutral-muted: rgba(175, 184, 193, 0.2);
    --color-accent-fg: #0969da;
    --color-accent-emphasis: #0969da;
    --color-danger-fg: #cf222e;
  }
}

[data-color-mode=light][data-light-theme=dark],
[data-color-mode=dark][data-dark-theme=dark] {
  --color-canvas-default-transparent: rgba(13, 17, 23, 0);
  --color-prettylights-syntax-comment: #8b949e;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
  --color-prettylights-syntax-entity-tag: #7ee787;
  --color-prettylights-syntax-keyword: #ff7b72;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-variable: #ffa657;
  --color-prettylights-syntax-string-regexp: #7ee787;
  --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
  --color-prettylights-syntax-markup-deleted-bg: #67060c;
  --color-prettylights-syntax-markup-inserted-text: #aff5b4;
  --color-prettylights-syntax-markup-inserted-bg: #033a16;
  --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
  --color-fg-default: #c9d1d9;
  --color-fg-muted: #8b949e;
  --color-canvas-default: #0d1117;
  --color-canvas-subtle: #161b22;
  --color-border-default: #30363d;
  --color-border-muted: #21262d;
  --color-neutral-muted: rgba(110, 118, 129, 0.4);
  --color-accent-fg: #58a6ff;
  --color-accent-emphasis: #1f6feb;
  --color-danger-fg: #f85149;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme=dark] {
    --color-canvas-default-transparent: rgba(13, 17, 23, 0);
    --color-prettylights-syntax-comment: #8b949e;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-variable: #ffa657;
    --color-prettylights-syntax-string-regexp: #7ee787;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-inserted-text: #aff5b4;
    --color-prettylights-syntax-markup-inserted-bg: #033a16;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-fg-default: #c9d1d9;
    --color-fg-muted: #8b949e;
    --color-canvas-default: #0d1117;
    --color-canvas-subtle: #161b22;
    --color-border-default: #30363d;
    --color-border-muted: #21262d;
    --color-neutral-muted: rgba(110, 118, 129, 0.4);
    --color-accent-fg: #58a6ff;
    --color-accent-emphasis: #1f6feb;
    --color-danger-fg: #f85149;
  }
}

@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme=dark] {
    --color-canvas-default-transparent: rgba(13, 17, 23, 0);
    --color-prettylights-syntax-comment: #8b949e;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-variable: #ffa657;
    --color-prettylights-syntax-string-regexp: #7ee787;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-inserted-text: #aff5b4;
    --color-prettylights-syntax-markup-inserted-bg: #033a16;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-fg-default: #c9d1d9;
    --color-fg-muted: #8b949e;
    --color-canvas-default: #0d1117;
    --color-canvas-subtle: #161b22;
    --color-border-default: #30363d;
    --color-border-muted: #21262d;
    --color-neutral-muted: rgba(110, 118, 129, 0.4);
    --color-accent-fg: #58a6ff;
    --color-accent-emphasis: #1f6feb;
    --color-danger-fg: #f85149;
  }
}

.markdown-body {
  color: var(--color-fg-default);
}


.markdown-body {
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Noto Sans, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  font-size: 16px;
  line-height: 1.5;
}

.markdown-body:before {
  content: "";
  display: table;
}

.markdown-body:after {
  clear: both;
  content: "";
  display: table;
}

.markdown-body>:first-child {
  margin-top: 0!important;
}

.markdown-body>:last-child {
  margin-bottom: 0!important;
}

.markdown-body a:not([href]) {
  color: inherit;
  text-decoration: none;
}

.markdown-body .absent {
  color: var(--color-danger-fg);
}

.markdown-body .anchor {
  color: #0969da;
  float: left;
  padding-right: 4px;
  line-height: 1;
}

.markdown-body .anchor:focus {
  outline: none;
}

.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre,
.markdown-body details {
  margin-top: 0;
  margin-bottom: 16px;
}

.markdown-body hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
  margin: 2rem 0;
}

.markdown-body blockquote {
  color: var(--color-fg-muted);
  border-left: .25em solid var(--color-border-default);
  padding: 0 1em;
}

.markdown-body blockquote>:first-child {
  margin-top: 0;
}

.markdown-body blockquote>:last-child {
  margin-bottom: 0;
}

.markdown-body h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  padding-bottom: 0.75rem;
  position: relative;
  border-bottom: 0;
}

.markdown-body h2 {
  text-align: left !important;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-top: 2px solid #e2e8f0;
}

.markdown-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4a5568;
  margin: 1.5rem 0 0.75rem;
  text-decoration: underline;
}

.markdown-body h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #4a5568;
  margin: 1.25rem 0 0.5rem;
}

.markdown-body h5,
.markdown-body h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #4a5568;
  margin: 1rem 0 0.5rem;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  font-weight: var(--base-text-weight-semibold, 600);
  scroll-margin-top: 5.5rem; /* Adjust this value to match your navbar height */
  margin-bottom: 16px;
  line-height: 1.25;
  color: var(--color-fg-default);
  border-bottom-color: var(--color-border-muted);
}

.markdown-body a {
  color: var(--color-accent-fg);
}

.markdown-body code {
  background-color: var(--color-neutral-muted);
  color: var(--color-fg-default);
}

.markdown-body h1 .octicon-link {
  display: none;
}


.markdown-body h2 .octicon-link,
.markdown-body h3 .octicon-link,
.markdown-body h4 .octicon-link,
.markdown-body h5 .octicon-link,
.markdown-body h6 .octicon-link {
    color: #0969da;
    scroll-margin-top: 3.5rem; /* Adjust this value to match your navbar height */
    vertical-align: middle;
    visibility: visible;
  }
  
  .markdown-body h1:hover .anchor,
  .markdown-body h2:hover .anchor,
  .markdown-body h3:hover .anchor,
  .markdown-body h4:hover .anchor,
  .markdown-body h5:hover .anchor,
  .markdown-body h6:hover .anchor {
    text-decoration: none;
    visibility: visible;
  }
  
  .markdown-body h1:hover .anchor .octicon-link,
  .markdown-body h2:hover .anchor .octicon-link,
  .markdown-body h3:hover .anchor .octicon-link,
  .markdown-body h4:hover .anchor .octicon-link,
  .markdown-body h5:hover .anchor .octicon-link,
  .markdown-body h6:hover .anchor .octicon-link {
    color: #0969da;
    visibility: visible;
  }

    .markdown-body h1 .anchor{
    visibility: hidden;
  }
  
  .markdown-body h1 tt,
  .markdown-body h1 code,
  .markdown-body h2 tt,
  .markdown-body h2 code,
  .markdown-body h3 tt,
  .markdown-body h3 code,
  .markdown-body h4 tt,
  .markdown-body h4 code,
  .markdown-body h5 tt,
  .markdown-body h5 code,
  .markdown-body h6 tt,
  .markdown-body h6 code {
    font-size: inherit;
    padding: 0 .2em;
  }
  
  .markdown-body h1 {
    padding-bottom: .3em;
    font-size: 2em;
  }
  
  .markdown-body h2 {
    border-top: 1px solid var(--color-border-muted);
    padding-bottom: 0.5em;
    padding-top: 1em;
    font-size: 1.5em;
    visibility: visible;
    border-bottom: 0;
  }
  
  .markdown-body h3 {
    font-size: 1.25em;
    visibility: visible;
  }
  
  .markdown-body h4 {
    font-size: 1em;
  }
  
  .markdown-body h5 {
    font-size: .875em;
  }
  
  .markdown-body h6 {
    color: var(--color-fg-muted);
    font-size: .85em;
  }
  
  .markdown-body summary h1,
  .markdown-body summary h2,
  .markdown-body summary h3,
  .markdown-body summary h4,
  .markdown-body summary h5,
  .markdown-body summary h6 {
    display: inline-block;
  }
  
  .markdown-body summary h1 .anchor,
  .markdown-body summary h2 .anchor,
  .markdown-body summary h3 .anchor,
  .markdown-body summary h4 .anchor,
  .markdown-body summary h5 .anchor,
  .markdown-body summary h6 .anchor {
    margin-left: -40px;
  }
  
  .markdown-body summary h1,
  .markdown-body summary h2 {
    border-bottom: 0;
    padding-bottom: 0;
  }
  
  .markdown-body ul,
  .markdown-body ol {
    padding-left: 2em;
  }
  
  .markdown-body ul.no-list,
  .markdown-body ol.no-list {
    padding: 0;
    list-style-type: none;
  }
  
  .markdown-body ol[type=a] {
    list-style-type: lower-alpha;
  }
  
  .markdown-body ol[type=A] {
    list-style-type: upper-alpha;
  }
  
  .markdown-body ol[type=i] {
    list-style-type: lower-roman;
  }
  
  .markdown-body ol[type=I] {
    list-style-type: upper-roman;
  }
  
  .markdown-body ol[type="1"] {
    list-style-type: decimal;
  }
  
  .markdown-body div>ol:not([type]) {
    list-style-type: decimal;
  }
  
  .markdown-body ul ul,
  .markdown-body ul ol,
  .markdown-body ol ol,
  .markdown-body ol ul {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .markdown-body li>p {
    margin-top: 16px;
  }
  
  .markdown-body li+li {
    margin-top: .25em;
  }
  
  .markdown-body dl {
    padding: 0;
  }
  
  .markdown-body dl dt {
    font-size: 1em;
    font-style: italic;
    font-weight: var(--base-text-weight-semibold, 600);
    margin-top: 16px;
    padding: 0;
  }
  
  .markdown-body dl dd {
    margin-bottom: 16px;
    padding: 0 16px;
  }
  
  .markdown-body table {
    width: 100%;
    width: -webkit-max-content;
    width: -webkit-max-content;
    width: max-content;
    max-width: 100%;
    display: block;
    overflow: auto;
  }
  
  .markdown-body table th {
    font-weight: var(--base-text-weight-semibold, 600);
  }
  
  .markdown-body table th,
  .markdown-body table td {
    border: 1px solid var(--color-border-default);
    padding: 6px 13px;
  }
  
  .markdown-body table td>:last-child {
    margin-bottom: 0;
  }
  
  .markdown-body table tr {
    background-color: var(--color-canvas-default);
    border-top: 1px solid var(--color-border-muted);
  }
  
  .markdown-body table tr:nth-child(2n) {
    background-color: var(--color-canvas-subtle);
  }
  
  .markdown-body table img {
    background-color: transparent;
  }
  
  .markdown-body img {
    max-width: 100%;
    box-sizing: content-box;
    background-color: var(--color-canvas-default);
  }
  
  .markdown-body img[align=right] {
    padding-left: 20px;
  }
  
  .markdown-body img[align=left] {
    padding-right: 20px;
  }
  
  .markdown-body .emoji {
    max-width: none;
    vertical-align: text-top;
    background-color: transparent;
  }
  
  .markdown-body span.frame {
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.frame>span {
    float: left;
    width: auto;
    border: 1px solid var(--color-border-default);
    margin: 13px 0 0;
    padding: 7px;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.frame span img {
    float: left;
    display: block;
  }
  
  .markdown-body span.frame span span {
    clear: both;
    color: var(--color-fg-default);
    padding: 5px 0 0;
    display: block;
  }
  
  .markdown-body span.align-center {
    clear: both;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.align-center>span {
    text-align: center;
    margin: 13px auto 0;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.align-center span img {
    text-align: center;
    margin: 0 auto;
  }
  
  .markdown-body span.align-right {
    clear: both;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.align-right>span {
    text-align: right;
    margin: 13px 0 0;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.align-right span img {
    text-align: right;
    margin: 0;
  }
  
  .markdown-body span.float-left {
    float: left;
    margin-right: 13px;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.float-left span {
    margin: 13px 0 0;
  }
  
  .markdown-body span.float-right {
    float: right;
    margin-left: 13px;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body span.float-right>span {
    text-align: right;
    margin: 13px auto 0;
    display: block;
    overflow: hidden;
  }
  
  .markdown-body code,
  .markdown-body tt {
    white-space: break-spaces;
    background-color: var(--color-neutral-muted);
    border-radius: 6px;
    margin: 0;
    padding: .2em .4em;
    font-size: 85%;
  }
  
  .markdown-body code br,
  .markdown-body tt br {
    display: none;
  }
  
  .markdown-body del code {
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  
  .markdown-body samp {
    font-size: 85%;
  }
  
  .markdown-body pre {
    word-wrap: normal;
  }
  
  .markdown-body pre code {
    font-size: 100%;
  }
  
  .markdown-body pre>code {
    word-break: normal;
    white-space: pre;
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0;
  }
  
  .markdown-body .highlight {
    margin-bottom: 16px;
  }
  
  .markdown-body .highlight pre {
    word-break: normal;
    margin-bottom: 0;
  }
  
  .markdown-body .highlight pre,
  .markdown-body pre {
    background-color: var(--color-canvas-subtle);
    border-radius: 6px;
    padding: 16px;
    font-size: 85%;
    line-height: 1.45;
    overflow: auto;
  }
  
  .markdown-body pre code,
  .markdown-body pre tt {
    max-width: auto;
    line-height: inherit;
    word-wrap: normal;
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    display: inline;
    overflow: visible;
  }
  
  .markdown-body .csv-data td,
  .markdown-body .csv-data th {
    text-align: left;
    white-space: nowrap;
    padding: 5px;
    font-size: 12px;
    line-height: 1;
    overflow: hidden;
  }
  
  .markdown-body .csv-data .blob-num {
    text-align: right;
    background: var(--color-canvas-default);
    border: 0;
    padding: 10px 8px 9px;
  }
  
  .markdown-body .csv-data tr {
    border-top: 0;
  }
  
  .markdown-body .csv-data th {
    font-weight: var(--base-text-weight-semibold, 600);
    background: var(--color-canvas-subtle);
    border-top: 0;
  }
  
  .markdown-body [data-footnote-ref]:before {
    content: "[";
  }
  
  .markdown-body [data-footnote-ref]:after {
    content: "]";
  }
  
  .markdown-body .footnotes {
    color: var(--color-fg-muted);
    border-top: 1px solid var(--color-border-default);
    font-size: 12px;
  }
  
  .markdown-body .footnotes ol {
    padding-left: 16px;
  }
  
  .markdown-body .footnotes ol ul {
    margin-top: 16px;
    padding-left: 16px;
    display: inline-block;
  }
  
  .markdown-body .footnotes li {
    position: relative;
  }
  
  .markdown-body .footnotes li:target:before {
    pointer-events: none;
    content: "";
    border: 2px solid var(--color-accent-emphasis);
    border-radius: 6px;
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: -24px;
    right: -8px;
  }
  
  .markdown-body .footnotes li:target {
    color: var(--color-fg-default);
  }
  
  .markdown-body .footnotes .data-footnote-backref g-emoji {
    font-family: monospace;
  }
  
  .markdown-body {
    background-color: var(--color-canvas-default);
    color: var(--color-fg-default);
  }
  
.markdown-body a {
  color: #0969da;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  font-weight: 500;
}

.markdown-body a:hover {
  color: #58BC82;
  border-bottom-color: #58BC82;
  text-decoration: none;
}
  
  .markdown-body img[align=center] {
    margin: 0 auto;
  }
  
  .markdown-body iframe {
    background-color: #fff;
    border: 0;
    margin-bottom: 16px;
  }
  
  .markdown-body svg.octicon {
    fill: currentColor;
  }
  
  .markdown-body .anchor>.octicon {
    display: inline;
  }
  
  .markdown-body figcaption {
    text-align: center;
    padding-top: 2px;
  }
  
  .markdown-body .highlight .token.keyword,
  .gfm-highlight .token.keyword {
    color: var(--color-prettylights-syntax-keyword);
  }
  
  .markdown-body .highlight .token.tag .token.class-name,
  .markdown-body .highlight .token.tag .token.script .token.punctuation,
  .gfm-highlight .token.tag .token.class-name,
  .gfm-highlight .token.tag .token.script .token.punctuation {
    color: var(--color-prettylights-syntax-storage-modifier-import);
  }
  
  .markdown-body .highlight .token.operator,
  .markdown-body .highlight .token.number,
  .markdown-body .highlight .token.boolean,
  .markdown-body .highlight .token.tag .token.punctuation,
  .markdown-body .highlight .token.tag .token.script .token.script-punctuation,
  .markdown-body .highlight .token.tag .token.attr-name,
  .gfm-highlight .token.operator,
  .gfm-highlight .token.number,
  .gfm-highlight .token.boolean,
  .gfm-highlight .token.tag .token.punctuation,
  .gfm-highlight .token.tag .token.script .token.script-punctuation,
  .gfm-highlight .token.tag .token.attr-name {
    color: var(--color-prettylights-syntax-constant);
  }
  
  .markdown-body .highlight .token.function,
  .gfm-highlight .token.function {
    color: var(--color-prettylights-syntax-entity);
  }
  
  .markdown-body .highlight .token.string,
  .gfm-highlight .token.string {
    color: var(--color-prettylights-syntax-string);
  }
  
  .markdown-body .highlight .token.comment,
  .gfm-highlight .token.comment {
    color: var(--color-prettylights-syntax-comment);
  }
  
  .markdown-body .highlight .token.class-name,
  .gfm-highlight .token.class-name {
    color: var(--color-prettylights-syntax-variable);
  }
  
  .markdown-body .highlight .token.regex,
  .gfm-highlight .token.regex {
    color: var(--color-prettylights-syntax-string);
  }
  
  .markdown-body .highlight .token.regex .regex-delimiter,
  .gfm-highlight .token.regex .regex-delimiter {
    color: var(--color-prettylights-syntax-constant);
  }
  
  .markdown-body .highlight .token.tag .token.tag,
  .markdown-body .highlight .token.property,
  .gfm-highlight .token.tag .token.tag,
  .gfm-highlight .token.property {
    color: var(--color-prettylights-syntax-entity-tag);
  }
  
  .markdown-body .highlight .token.deleted,
  .gfm-highlight .token.deleted {
    color: var(--color-prettylights-syntax-markup-deleted-text);
    background-color: var(--color-prettylights-syntax-markup-deleted-bg);
  }
  
  .markdown-body .highlight .token.inserted,
  .gfm-highlight .token.inserted{
    color:var(--color-prettylights-syntax-markup-inserted-text);
    background-color:var(--color-prettylights-syntax-markup-inserted-bg)
    }


.md-header {
  font-size: 4vh;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.md-header-1 {
  text-align: center;
  font-size: 6vh;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.md-date {
  font-size: 1vw;
  font-style: normal;
  letter-spacing: -0.05rem;
  color: #8b8c8f;
}

.md-blog-h3 {
  font-size: 3vh;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.md-blog-h3:hover {
  color: #58BC82;
}



.sidebar {
  position: sticky;
  top: 5rem;
  max-height: 80vh; /* Full viewport height */
  min-height: 70vh; /* Minimum visible size of 70% of viewport height */
  overflow-y: auto; /* Enable scrolling if content exceeds height */
  padding-bottom: 1rem; /* Add padding to bottom */
}

/* Adjust the list styles to ensure proper layout */
.sidebar ul {
  max-height: calc(100vh - 4rem); /* Adjust this value based on header/footer height */
  overflow-y: auto; /* Enable scrolling within the list */
}

.container-content {
  max-width: 90vw;
  min-height: 80vh;
}

/* styles-md.css - Theme-specific additions to existing styles */

/* Only add dark mode styles for docs container */
[data-color-mode=dark] .docs-container {
  background-color: #0d1117;
  color: #c9d1d9;
}

@media (prefers-color-scheme: dark) {
  [data-color-mode=auto] .docs-container {
    background-color: #0d1117;
    color: #c9d1d9;
  }
}

/* Dark mode for markdown headers */
[data-color-mode=dark] .markdown-body h1 {
  color: #c9d1d9 !important;
}

[data-color-mode=dark] .markdown-body h2 {
  color: #c9d1d9 !important;
  border-top-color: #30363d;
}

[data-color-mode=dark] .markdown-body h3,
[data-color-mode=dark] .markdown-body h4,
[data-color-mode=dark] .markdown-body h5,
[data-color-mode=dark] .markdown-body h6 {
  color: #c9d1d9 !important;
}

@media (prefers-color-scheme: dark) {
  [data-color-mode=auto] .markdown-body h1 {
    color: #c9d1d9 !important;
  }

  [data-color-mode=auto] .markdown-body h2 {
    color: #c9d1d9 !important;
    border-top-color: #30363d;
  }

  [data-color-mode=auto] .markdown-body h3,
  [data-color-mode=auto] .markdown-body h4,
  [data-color-mode=auto] .markdown-body h5,
  [data-color-mode=auto] .markdown-body h6 {
    color: #c9d1d9 !important;
  }
}

/* Dark mode for sidebar links */
[data-color-mode=dark] .sidebar a {
  color: #c9d1d9;
}

@media (prefers-color-scheme: dark) {
  [data-color-mode=auto] .sidebar a {
    color: #c9d1d9;
  }
}

/* Dark mode for forward/back buttons */
[data-color-mode=dark] .nav-button-docs {
  background-color: #1f2937;
  border-color: #374151;
  color: #c9d1d9;
}

[data-color-mode=dark] .nav-button-label {
  color: #8b949e;
}

@media (prefers-color-scheme: dark) {
  [data-color-mode=auto] .nav-button-docs {
    background-color: #1f2937;
    border-color: #374151;
    color: #c9d1d9;
  }

  [data-color-mode=auto] .nav-button-label {
    color: #8b949e;
  }
}

/* Add transition for nav buttons */
.nav-button-docs {
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}