body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 90%; /* Prozentsatz für responsives Design */
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

h2 {
    margin-top: 0;
    color: #2196F3;
}

a {
    text-decoration: none;
    color: #2196F3;
}

a:hover {
    text-decoration: underline;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #2196F3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    display: block; /* Button auf voller Breite */
    width: 100%; /* Button auf voller Breite */
}

button[type="submit"]:hover {
    background-color: #1976D2;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px; /* Schriftgröße für Tabellen anpassen */
}

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

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 600px) {
    .container {
        margin: 10px;
    }

    table {
        font-size: 12px; /* Schriftgröße für Tabellen anpassen */
    }

    th, td {
        padding: 5px;
    }

    input[type="text"],
    input[type="date"],
    input[type="time"],
    input[type="number"],
    textarea {
        font-size: 14px; /* Schriftgröße für Eingabefelder anpassen */
    }

    button[type="submit"] {
        font-size: 14px; /* Schriftgröße für Buttons anpassen */
    }
}

/* Responsive Anpassungen für sehr kleine Bildschirme */
@media (max-width: 400px) {
    .container {
        margin: 5px;
    }
    table {
        font-size: 10px; /* Schriftgröße für Tabellen anpassen */
    }
    th, td {
        padding: 3px; /* Padding für Tabellen anpassen */
    }
}