1/* Styling für das Inhaltsverzeichnis */
2.custom_toc {
3    font-family: Arial, sans-serif;
4    font-size: 14px;
5    line-height: 1.6;
6}
7
8.custom_toc_list {
9    list-style-type: none;
10    padding: 0;
11    margin: 0;
12}
13
14.custom_toc_list li {
15    margin: 5px 0;
16}
17
18.custom_toc_list li a {
19    text-decoration: none;
20    color: #0073e6;
21}
22
23.custom_toc_list li a:hover {
24    text-decoration: underline;
25    color: #005bb5;
26}
27