body {
    font-family: Arial, sans-serif;
}

header {
    background: linear-gradient(90deg, #0073e6, #005bb5);
    padding: 10px 0;
    text-align: center;
}

.logo {
    float: left;
    margin-right: 20px; 
}

logo {
    float: left;
    margin-right: 20px; 
}

nav ul {
    list-style-type: none;
    padding: 0;

}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
	color: white;
}










/* Tabellenstil */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table thead {
    background-color: #333; /* Dunkelgrauer Kopf */
    color: #fff; /* Weiße Schrift im Kopf */
}


table th {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd; /* Hellgraue Ränder */
    color: white;
	background-color: #333;
}


table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd; /* Hellgraue Ränder */
}


table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Hellgrauer Hintergrund für jede 2. Zeile */
}

table tbody tr:hover {
    background-color: #f1f1f1; /* Leicht dunkleres Grau beim Hover */
}




















.button {
    padding: 5px 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 5px;
}

.stop-button {
    background-color: red;
}

.edit-button {
    background-color: green;
}

.archive-button {
    background-color: blue;
}

form {
    max-width: 400px;
    margin: 20px auto;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input, form select, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form.inline {
    display: inline;
}

form.inline input {
    width: auto;
    display: inline-block;
    margin-right: 10px;
}




















/* Form Styles */
form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Table Styles */
.table-container {
    width: 100%;
    border-collapse: collapse;
}

.table-container td {
    padding: 5px;
    vertical-align: middle;
}

.label-container {
    display: table;
    width: 100%;
    border-radius: 2px;
    transition: background-color 0.3s ease;

}

.label-container:hover {
    background-color: #ced4da;
}

input[type="radio"] {
    margin-right: 10px;
}

input[type="radio"]:checked + label {
    font-weight: bold;
    color: #007bff;
}

label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    form {
        padding: 15px;
    }

    .label-container {
        font-size: 16px;
    }
}

/* Accessibility */
input[type="radio"]:focus + label {
    outline: 2px solid #007bff;
    outline-offset: 4px;
}