/* Grundlegende Stile für die gesamte Seite */
body {
    font-family: 'Arial', sans-serif;
    margin: 10px;
    padding: 10px;
    background-color: #f4f4f9;
    color: #333;
}

/* Kopfbereich */
header {
    background-color: #007ebe;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Filter-Labels und Dropdowns */
label {
    font-size: 16px;
    margin-right: 10px;
    color: #333;
}

select {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 14px;
}

th {
    background-color: #007ebe;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    color: #333;
}

/* Hover-Effekt für Tabellenzeilen */
tbody tr:hover {
    background-color: #f1f1f1;
}

/* Fußzeile */
footer {
    background-color: none;
    color: black;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    table, th, td {
        font-size: 12px;
    }

    select {
        width: 100%;
    }
}
