.literatur-block {
          border: 1px solid #ccc;
          border-radius: 5px;
          padding: 12px;
          margin-bottom: 20px;
          background-color: #f9f9f9;
        }
		
.literatur-block h3 { /* unterstützt durch ChatGPT, die Überschrift sollte im div weiter oben sein */
          margin-top: 0; /* legt den Randbereich oben am Element fest */
        }
		
 .feld {
		  margin-bottom: 6px;
          display: flex; /* Flexbox zur horizontalen Anordnung, Vorschlag von ChatGPT*/
	/* Flexboxen gibt es um z. B. Bilder und Text nebeneinander darzustellen. */
          align-items: center;
        }
        .feld img {
          width: 20px; 
          height: 20px;
          margin-right: 8px;
        }
        .feld span {
          font-weight: bold;
          margin-right: 4px;
        }