/* Allgemeine Seitenstile */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f8f9fa;
    color: #333;
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Tabellenkopf */
th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

/* Alternierende Zeilenfarben */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Eingabefeld & Button */
input, button {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* ToDo Farben */
.green {
    background-color: #d4edda;
    color: #155724;
}

.red {
    background-color: #f8d7da;
    color: #721c24;
}

/* Bearbeiten-Button */
a {
    text-decoration: none;
    padding: 8px 12px;
    background: #28a745;
    color: white;
    border-radius: 5px;
}

a:hover {
    background: #218838;
}
