/*
Hides the source block from the header.
This allows the search block to sit flush to the right of the header.
*/
.md-header__source {
    display: none;
}

/*
Capitalises space separated section indexes when underscored or hyphenated.
*/
.md-nav__link {
    text-transform: capitalize;
}

/* Same again for breadcrumbs */
.md-path__item {
    text-transform: capitalize;
}

/*
Back to top button (WIP)
*/
.md-top {
    background-color: rgb(147, 131, 226);
    color: white;
    border-radius: .5rem;
    backdrop-filter: blur(4px);
    transition: all .25s;
}

.md-top:hover {
    background-color: white;
    color: black;
}
