/* h1 {color: #383C4C !important;} */

.md-typeset :is(h1, h2, h3, h4, h5, h6) {
  color: #383C4C;
}
/* CSS für alle Header mit Serifen */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif; /* Wähle hier eine beliebige Serifen-Schriftart */
}


/* TOC header */
.md-nav__title {
  color: #383C4C;
}


.md-tabs {
  background-color: #d3edf4; /* Hintergrund */
}


.md-nav__item--active {
  display: none !important;
}

/* DER AKTIVE TAB*/
.md-tabs .md-tabs__item--active {
  text-decoration: underline !important; /* Text unterstreichen */
  color: red !important;  /* Textfarbe des Unterstrichenen*/
  font-weight: bold !important;  /* Text fett machen */
}

.md-tabs .md-tabs__item--active a {
  color: red !important;  /* Textfarbe */
}


/* Beispiel für benutzerdefinierte Farben */
.md-header {
    background-color: #3E93FC !important;  /* Beispiel: Orange (HEX) */
}

/* Beispiel für benutzerdefinierte Akzentfarbe */
a {
    color: #383C4C !important; /* Das beinflusst ALLE Links */
}

/* Site name (top left text)  Assist | Reach */
.md-header__title {
    color: #383C4C !important;
}


