:root  > * {
  /* Primary colors */
  --md-primary-fg-color:        #201751;
  /* --md-primary-fg-color--light: #61C01A; */
  /* --md-primary-fg-color--dark:  #61C01A; */
  
  /* Accent colors */
  --md-accent-fg-color:         #61C01A;
  /* --md-accent-fg-color--light:  #201751;
  --md-accent-fg-color--dark:   #201751; */

}

/* Old admonition style */
.md-typeset .admonition,
.md-typeset details {
  border-width: 0;
  border-left-width: 4px;
}

/* Limit code block vertical size */
.md-typeset pre > code {
    max-height: 500px; /* Adjust the height as desired */
    overflow-y: auto; /* Adds a vertical scrollbar if content exceeds max-height */
}


/* Limit large images on wide screens only */
.md-content img {
  max-width: 100%;
  height: auto;
}

/* Only apply size limits on large screens */
@media screen and (min-width: 1200px) {
  .md-content img {
    max-width: 700px;
  }
}

/* Disable uppercase transformation for H5 */
.md-typeset h5 {
  text-transform: none;
}

