._md_host_container {
  width: 100%;
  text-align: left;
  word-break: break-word;
}

._md_seperator {
  background-color: #ccc;
  height: 1px;
  width: 90%;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

._md_checked_checkbox_element {
  list-style-type: none;
}

._md_unchecked_checkbox_element {
  list-style-type: none;
}
._md_bql_item {
  list-style-type: none;
}

/* Zentrierung */
._md_center {
  text-align: center;
}

/* Links ausgerichtet */
._md_leftbound {
  text-align: left;
}

/* Rechts ausgerichtet */
._md_rightbound {
  text-align: right;
}

/* Border für die gesamte Tabelle */
._md_table {
  border-collapse: collapse;
}

._md_table th,
._md_table td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
}

._md_iframe_container {
  text-align: center;
}
._md_img_container {
  text-align: center;
}
._md_img_video_container {
  text-align: center;
}

._md_code_styler {
  white-space: pre-wrap;
  word-break: break-word;
  background-color: #000000;
}

._md_h1 {
  margin: 0%;
}
._md_h2 {
  margin: 0%;
}
._md_h3 {
  margin: 0%;
}
._md_h4 {
  margin: 0%;
}
._md_h5 {
  margin: 0%;
}
._md_h6 {
  margin: 0%;
}
._md_h7 {
  margin: 0%;
}
._md_text {
  font-size: 22px;
  margin: 1px;
  line-height: 1.2;
}

._md_link {
  /* Unvisited Link – leicht gräuliches Weiß */
  color: #f2f2f2;
  text-decoration: underline;
}

._md_link:visited {
  /* Geklickt – leicht dunkleres Grauweiß */
  color: #b6b6b6;
  text-decoration: underline wavy;
}

._md_link:hover {
  /* Hover – helleres Weiß */
  color: #ffffff;
  text-decoration: underline double;
}

._md_br {
  font-size: 18px;
  line-height: 1.2;
  margin: 1px;
}

._md_list {
  line-height: 1.1;
}
._md_ordered_list {
  line-height: 1.1;
}

._md_btn_container {
  text-align: center;
}

._md_btn {
  display: inline-block;
  background-color: #ffd700; /* strahlendes, leuchtendes Gelb */
  color: #000000; /* schwarzer Text */
  padding: 12px 25px;
  margin-top: 20px;
  margin-bottom: 20px;

  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s, transform 0.2s;
}

._md_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(0, 0, 0, 0.1); /* leicht dunkleres Overlay */
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

._md_btn:hover {
  background-color: #b8860b; /* dunkleres Goldbraun beim Hover */
  transform: scale(1.05);
}

._md_btn:hover::after {
  width: 0;
  height: 0;
}

@media screen and (min-width: 768px) {
  ._md_img {
    height: 200px;
    width: auto;
  }
  ._md_iframe {
    height: 600px;
    width: 80%;
  }
  ._md_yt_video {
    height: 36vh;
    width: 64vh;
  }
  ._md_h1 {
    font-size: 29px;
    font-weight: bold;
  }
  ._md_h2 {
    font-size: 28px;
    font-weight: bold;
  }
  ._md_h3 {
    font-size: 27px;
    font-weight: bold;
  }
  ._md_h4 {
    font-size: 26px;
    font-weight: bold;
  }
  ._md_h5 {
    font-size: 25px;
    font-weight: bold;
  }
  ._md_h6 {
    font-size: 24px;
    font-weight: bold;
  }
  ._md_h7 {
    font-size: 23px;
    font-weight: bold;
  }
  ._md_text {
    font-size: 22px;
  }

  ._md_code_inline {
    padding: 5;
  }

  ._md_code_block_styler {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  ._md_img {
    width: 98%;
    height: auto;
  }
  ._md_iframe {
    width: 98%;
    height: 60vh;
  }
  ._md_yt_video {
    height: 36vh;
    width: auto;
  }

  ._md_h1 {
    font-size: 22px;
    font-weight: bold;
  }
  ._md_h2 {
    font-size: 20px;
    font-weight: bold;
  }
  ._md_h3 {
    font-size: 18px;
    font-weight: bold;
  }
  ._md_h4 {
    font-size: 17px;
    font-weight: bold;
  }
  ._md_h5 {
    font-size: 16px;
    font-weight: bold;
  }
  ._md_h6 {
    font-size: 15px;
    font-weight: bold;
  }
  ._md_h7 {
    font-size: 14px;
    font-weight: bold;
  }
  ._md_text {
    font-size: 14px;
  }
  ._md_br {
    font-size: 14px;
  }

  ._md_code_inline {
    padding: 1;
  }

  ._md_code_block_styler {
    padding-top: 40px;
    padding-bottom: 40px;
    padding: 20px;
  }

  ._md_list {
    padding-left: 10px;
  }
  ._md_ordered_list {
    padding-left: 10px;
  }
}
