/* Reset CSS */
body, h1, h2, h3, p, ul, ol, li, table, th, td {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Calibri', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin-left: 20px;
}

h1, h2, h3 {
    color: #0066cc;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 20px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    width: 80%;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Formulare */
form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="submit"] {
    padding: 8px;
    margin-bottom: 10px;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Allgemeine Stile für Listen */
ul, ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Gestaltete ungeordnete Liste */
ul {
    background-color: #f4f4f4;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

ul li {
    margin-bottom: 8px;
    padding: 5px;
    margin: 10px;
    border-radius: 3px;
}

/* Gestaltete geordnete Liste */
ol {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

ol li {
    margin-bottom: 8px;
    padding: 5px;
    background-color: #e8e8e8;
    border-radius: 3px;
}
