body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout3 {
    max-width: 600px;
    width: 90%;
    margin: 20px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.page-title {
            font-family: 'Arial', sans-serif;
            font-size: 20pt;
            font-weight: bold;
            text-align: left;
            background-color: #BF0000;
            color: #ffffff;
            padding: 40px 0;
            padding-left: 175px;
            margin: 0;
            background-image: url('https://dl.ccb-online.de/informatik/HTML-Applets/Logo.svg');
            background-repeat: no-repeat;
            background-position: 40px center;
            background-size: contain;
            width: 100%;
            box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

form-group label {
    flex: 0 0 auto;
}

.form-group select,
.form-group input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #BF0000;
    color: #ffffff;
    cursor: pointer;
}

button:hover {
    background-color: #800000;
}

.warning {
    color: #ff0000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #d3d3d3; /* Helles Grau */
    color: #343a40; /* Passend zur Schriftfarbe */
}

.progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
}

.progress {
    height: 100%;
    text-align: center;
    color: white;
    white-space: nowrap;
    overflow: hidden;
}

.legend {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.hinweis {
    font-style: italic;
    color: #6c757d;
    max-width: 600px;
    width: 90%;
                padding: 0px 20px;
}