* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;  /*#f4f4f4*/
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background:  #373737; /* Dunkelgrün  #2F4F4F; */
    color: #ffffff;
    padding: 1rem;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

header p {
    font-size: 1.2rem;
}

main {
    flex: 1;
    padding: 1rem;
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table thead {
    background: #373737; /* Dunkelgrün */
    color: white;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
    background: #f2f2f2;
}

a {
    color: #2F4F4F;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}



footer {
    background:  #373737; /* Dunkelgrün */
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer a {
	color: #fff;
}

.footer-column {
    flex: 1;
    padding: 1rem;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 0.5rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 1rem;
    }

    table, th, td {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.5rem;
    }

    footer {
        flex-direction: column;
    }

    .footer-column {
        padding: 0.5rem;
        min-width: 100%;
        text-align: center;
    }
}