        body {
            font-family: Arial, sans-serif;
            font-size: 15px;
			background-color: #f0f0f0;
            margin: 0;
            padding: 0;
    min-height: 100vh; /* Sicherstellt, dass der Inhalt mindestens die Höhe des Viewports einnimmt */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikale Zentrierung */
    align-items: center; /* Horizontale Zentrierung */
}


        h1 {
            color: #333;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-top: 10px;
            text-align: left;
        }


        button {
            background-color: #00CDCD;
            color: black;
            padding: 20px;
            margin-top: 20px;
            border: 2px solid #434242;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            
        }
       input[type="submit"] {
            background-color: #0056b3;
            color: white;
            padding: 10px;
            margin-top: 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        button:hover {
            background-color: #004494;
        }

        .error {
            color: #ff0000;
            text-align: center;
            margin-top: 15px;
        }
 
.paginator {
    font-size: 14px;
    color: black;
	margin-top: 20px;
}


.paginator {
    text-align: center;
    margin-top: 20px;
}

.paginator form {
    display: inline-block;
}

.paginator button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}

.paginator button:hover {
    background-color: #004494;
}
.paginator a {
    color: black; /* Setzt die Linkfarbe auf Schwarz */
    text-decoration: none; /* Entfernt die Unterstreichung */
}

.paginator a:hover,
.paginator a:active,
.paginator a:focus {
    color: black; /* Behält die schwarze Farbe bei beim Hover, Active oder Focus */
}
.table-container {
    overflow: auto; /* Ermöglicht sowohl horizontales als auch vertikales Scrollen */
    max-height: 95vh; /* Begrenze die maximale Höhe auf 80% der Ansichtshöhe */
    width: 100%; /* Passt die Breite der Tabelle an */
}
table {
    width: 100%;
    border-collapse: collapse;
}

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

th {
	position: sticky;
    top: 0;
    z-index: 10; /* Z-Index um sicherzustellen, dass th über den Zellen bleibt */
    background-color: #434242;
    color: #00CDCD;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}
th a {
    text-decoration: none;
    color: black;
    display: inline-flex; /* Stellt sicher, dass der Inhalt inline bleibt */
    align-items: center; /* Zentriert den Pfeil vertikal mit dem Text */
}
th a.asc::after, th a.desc::after {
    margin-left: 2px; /* Abstand zwischen Text und Pfeil */
}
th a.ASC::after {
    content: ' \2191'; /* Unicode für Pfeil nach oben */
}

th a.DESC::after {
    content: ' \2193'; /* Unicode für Pfeil nach unten */
}

.btn {
    display: inline-block;
    padding: 20px 30px;
    font-size: 10px;
    font-weight: bold;
    color: white;
    background-color: #434242; /*#007bff;  Blaue Farbe */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3; /* Dunkleres Blau bei Hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
}

.btn:active {
    background-color: #003f7f; /* Noch dunkler bei Klick */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Weniger Schatten bei Aktivierung */
    transform: translateY(2px); /* Leichter Eindruckeffekt */
}
.button-row {
    display: flex; /* Ordnet die Buttons horizontal an */
    gap: 10px; /* Abstand zwischen den Buttons */
    justify-content: center; /* Zentriert die Buttons horizontal */
    flex-wrap: wrap; /* Erlaubt Umbruch bei kleinem Bildschirm */
}

form {
    margin: 0; /* Entfernt unnötige Abstände */
}