/* #region --- Allgemeine Standards */
* {
  font-family: Sans-Serif;
  font-size: large;
  box-sizing: border-box;
}
html {
  height: 100dvh;
}
body {
  width: 100dvw;
  height: 100dvh;
  overflow-y: hidden;
  margin: 0px;
  padding: 10px;
}
.scrollable {
  overflow-y: scroll;
}
/* #endregion */
/* #region Aufbau der Bildschirme */
.screenTemplate {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vdh;
}
.bar {
  background-color: bisque;
  min-height: 30px;
  padding: 10px;
}
.bar-top {
  background-color: bisque;
  min-height: 30px;
  padding: 10px;
  font-size: x-large;
  font-weight: bold;
}
.bar-top * {
  font-size: inherit;
}
.bar-bottom {
  background-color: bisque;
  min-height: 30px;
  padding: 10px;
}
.hashtag {
  background-color: yellow;
}
.screen-right {
  height: 100dvh;
}
/* #endregion */
@keyframes blink {
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
}
#guides {
  background-color: grey;
  padding: 10px 0px 10px 0px;
  padding: 10px;
}
#guides li {
  min-height: 30px;
  padding: 20px 10px;
  margin: 10px 0;
  background-color: hsl(50, 80%, 50%);
  font-size: larger;
}
#guides .isLoading {
  background-color: hsl(50, 80%, 80%);
  animation: blink 0.5s linear infinite;
}
#guides ul {
  list-style: none;
  padding: 0px;
}
#navigation {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
#navigation select {
  padding: 10px;
  margin: 0 10px;
}
#navigation .bar-bottom {
  display: none;
}
#navigation ul {
  list-style: none;
  padding: 0px;
}
#content {
  background-color: beige;
  padding: 10px;
}
#content .bar-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: -10px -10px 10px -10px;
  padding: 10px 20px;
}
#content .bar-top button {
  background-color: inherit;
  border: none;
}
.markdown h1 {
  font-size: xx-large;
  font-weight: bolder;
  border-bottom: 2px solid #c03;
}
.markdown h2 {
  font-size: x-large;
  font-weight: bold;
}
.markdown h3 {
  font-size: large;
  font-weight: bold;
}
@media screen and (max-width: 499px) {
  /*
    .showMenuButton.screen-active~#menubutton {
        /* only needed if menu Button opens is the same for all, standard is no display *
        display: inherit;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1;
    }
    */
  /* #region SCREEN position */
  .screen-left {
    /* parenthesis to hide in Css */
    height: 100dvh;
    width: 100dvw;
    position: fixed;
    top: 0;
    left: -100dvw;
  }
  .screen-right {
    /* parenthesis to hide in Css */
    height: 100dvh;
    width: 100dvw;
    position: fixed;
    top: 0;
    left: 100dvw;
  }
  .screen-active {
    /* no need to put important becaus of last position */
    /* parenthesis to hide in Css */
    height: 100dvh;
    width: 100dvw;
    position: fixed;
    top: 0;
    left: 0;
  }
  /* #endregion */
}
