body p {
hyphens: auto;
}



/* Stil für -Blöcke (ganze Codeblöcke) */
.pre {
    background-color: #f4f4f4 !important;   /* Hellgrauer Hintergrund */
    border: 1px solid #ccc;      /* Hellgrauer Rahmen */
    padding: 12px !important;               /* Innenabstand */
    font-family: monospace !important;      /* Monospace-Schrift */
    font-size: 19px !important;             /* Lesbare Schriftgröße */
    overflow-x: auto;            /* Horizontales Scrollen bei langen Zeilen */
    border-radius: 4px !important;          /* Abgerundete Ecken */
    white-space: pre-wrap !important;
		margin-bottom: 20px !important;/* Zeilenumbruch innerhalb des Blocks */
}

/* Stil für Inline-Code  */
.code {
    background-color: #eee;      /* Heller Hintergrund */
    border: 1px solid #ddd;      /* Leichter Rahmen */
    padding: 2px 6px;            /* Etwas Innenabstand */
    font-family: monospace;      /* Monospace-Schrift */
    font-size: 18px;
    border-radius: 3px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

tbody tr:nth-child(odd) {
    background-color: #ffffff; /* Weiße Reihe */
}

tbody tr:nth-child(even) {
    background-color: #f3f5f7; /* Hellgraue Reihe */
}