[data-md-color-scheme="default"] {
  --md-primary-fg-color:        #2E548E;
  --md-accent-fg-color:         #fe7b00;
}

[data-md-color-scheme="slate"] {
  --md-primary-fg-color:        #2E548E;
  --md-accent-fg-color:         #fe7b00;
}

/* Make the site_name text follow the primary colour */
.md-header-nav__title {
    color: var(--md-primary-fg-color);
    transition: color 0.3s ease;
}

/* Hide sidebar site title */
/*
.md-nav--primary .md-nav__title {
    display: none;
}
*/

/* Hide the logo and site title from the left sidebar on desktop */
@media screen and (min-width: 76.25em) {
  .md-sidebar--primary .md-nav__title[for="__drawer"] {
    display: none;
  }
}

/* To make sure there is permenant space for the scroll even if there is not
content. Otherwise the Header Title div will keep re-sizing.*/
html {
  overflow-y: scroll;
}
