     body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            background-color: #007BFF; /* Blau für den Header */
            color: white;
            text-align: center;
            padding: 20px;
        }
        nav {
            background-color: #0056b3; /* Blau für das Navigationsmenü */
        }
        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            text-align: center;
        }
        nav ul li {
            display: inline;
            margin: 0 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
        nav ul li a:hover {
            text-decoration: underline;
        }
nav ul li a.active {
    background-color: white;
    color: #0056b3;
    padding: 5px 10px;
    border-radius: 5px;
}
    	.old-view-link {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 14px;
        }
        .old-view-link a {
            color: white;
            text-decoration: underline;
        }
        section {
            padding: 20px;
        }
        footer {
            text-align: center;
            padding: 10px;
            background-color: #0056b3; /* Blau für die Fußzeile */
            color: white;
        }

footer a {
    color: white;
    text-decoration: underline;
}
footer a:hover {
    text-decoration: underline;
}

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table, th, td {
            border: 1px solid #ddd;
        }
        th, td {
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #007BFF; /* Blau für Tabellenköpfe */
            color: white;
        }



.section-centered {
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    width: 80px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header-text {
    flex: 1;
}

.aufsichtsrat-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.aufsichtsrat-table th, .aufsichtsrat-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

.adresse-cell {
    text-align: center;
    font-weight: normal;
    /*background-color: #f9f9f9;  leicht grauer Hintergrund */
    padding: 15px;
}

.contact-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease; /* sanfte Animation */
}

.contact-photo:hover,
.contact-photo:focus {
    transform: scale(1.1); /* leicht vergrößern beim Drüberfahren/Antippen */
}