.md-typeset h1, header .md-ellipsis {
    font-family: OCRA;
}
.md-tabs__link {
    font-size: 0.8rem;
    opacity: 0.9;
}
.md-tabs__item--active .md-tabs__link {
    font-weight: bold;
}
:root {
  --md-primary-fg-color:        #00c0b5;
  --md-primary-fg-color--light: #00c0b5;
  --md-primary-fg-color--dark:  #00c0b5;
}
.test {
    display: inline;
}
.task {
    display: none;
}
/* Test/task toggle. Based on https://www.w3schools.com/howto/howto_css_switch.asp */
#robot-mode-widget div {
    display: inline-block;
    vertical-align: middle;
}
@media (hover: none) {
    #robot-mode-widget {
        opacity: 1;
    }
}
#robot-mode-toggle {
    position: relative;
    width: 42px;
    height: 23px;
    margin: 0 4px;
}
#robot-mode-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    transition: 0.4s;
    border-radius: 23px;
}
#robot-mode-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: var(--md-primary-fg-color);
    transition: 0.4s;
    border-radius: 50%;
}
#robot-mode-toggle[data-robot-mode="task"] #robot-mode-slider:before {
    transform: translateX(18px);
}
#robot-mode-widget .md-icon svg {
    height: 21px;
    width: 21px;
}
@media (max-width: 600px) {
    #robot-mode-widget div[data-robot-narrow="hide"] {
        display: none;
    }
}
