/* Container für Button und Inhaltsverzeichnis */
    .toc-container {
      width: auto;
      background-color: transparent;
      padding: 10px;
      border-radius: 8px;
      border: solid;
    }

    /* Inhaltsverzeichnis */
    .toc {
      display: none; /* Standardmäßig ausgeblendet */
      margin-top: 10px;
    }

    .toc h2 {
      font-size: 18px;
      margin-top: 25px;
    margin-bottom: 15px;
    }

    .toc a {
      display: block;
      color: #333;
      text-decoration: none;
      margin: 10px 0;
      transition: color 0.3s;
      position: relative;
      padding-left: 20px; /* Platz für den Pfeil */
    }

    .toc a::before {
      content: "➤"; /* Pfeilsymbol */
      position: absolute;
      left: 0;
      font-size: 10px;
      color: black;
      padding: 5px;
    }

    .toc a:hover {
      color: #007bff;
    }

    /* Weiches Scrollen */
    html {
      scroll-behavior: smooth;
    }
    [id] {
      scroll-margin-top: 70px;
    }

    /* Stil für den Button */
    #buttoninhaltv {
      background-color: transparent;
      font-size: 14px;
      border: none;
    }
#buttoninhaltv:hover {
      background-color: transparent;
      font-size: 14px;
      border: none;
    }