
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
			
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        h1, h2 {
            color: #2e6da4;
        }
        .container {
            max-width: 1000px;
            width: 100%;
            margin: 20px;
            padding: 20px;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 50px;
        }
        table th, table td {
            border: 1px solid #ddd;
            padding: 5px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f1f1f1;
        }
        .filter-form {
            margin-bottom: 20px;
        }
        .filter-form select {
            padding: 5px;
            font-size: 16px;
        }
        .filter-form input[type="submit"] {
            padding: 5px 10px;
            font-size: 16px;
            background-color: #2e6da4;
            color: white;
            border: none;
            cursor: pointer;
        }

		
		.footer-menu {
            width: 100%;
            background-color: #f1f1f1;
            padding: 10px 0;
        }
        .footer-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
        }
        .footer-menu ul li {
            margin: 0 15px;
        }
        .footer-menu ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
		
/* Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem; /* Tabelle verkleinern */
    }

    table th, table td {
        padding: 6px; /* Weniger Platz zwischen den Zellen */
    }
}

/* Noch kleinere Bildschirme */
@media (max-width: 480px) {
    table {
        font-size: 0.8rem; /* Noch kleinere Schriftgröße */
    }

    table th, table td {
        padding: 4px; /* Noch weniger Platz zwischen den Zellen */
    }

    /* Tabelle automatisch skalieren, um in den Bildschirm zu passen */
    #table-container {
        width: 100%;
        overflow-x: auto;
    }

    table {
        width: 100%; /* Tabelle bleibt innerhalb des Containers */
    }
}