body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        form {
            text-align: center;
            margin-bottom: 20px;
        }

        label {
            font-weight: bold;
        }

        select {
            padding: 8px;
            font-size: 16px;
            margin-right: 10px;
        }

        button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #8a8884;
    transition: background-color 0.3s ease;
}
button:hover{
    background-color: #a19f99;
}

        table {
            width: 100%;
    border-collapse: collapse;
        }

        th, td {
             border: 1px solid #ddd;
    padding: 8px;
        }

        th {
            background-color: #c7c7c7;
    text-align: left;
        }
	tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

        .maintenance-banner {
            background-color: #e63e3e;
            text-align: center;
            padding: 10px;
            color: #fff;
        }

        .unbesetzt {
            color: red;
        }

    footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
}

footer a {
    color: #fff; /* Ändern Sie die Farbe der Links im Footer */
    text-decoration: none;
}

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


/* Links */
.link {
    color: #007bff; /* Ändern Sie die Farbe der Links */
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}


.button-back {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #ffc107;
    padding: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button-back:hover {
    background-color: #ff9800;
}