
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
}
.container {
    background: white;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    text-align: center;
}
label {
    display: block;
    margin: 10px 0;
}
input, select, button {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}
button {
    background-color: #0073e6;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}
button:hover {
    background-color: #005bb5;
}
#ergebnisContainer {
    margin-top: 20px;
}
#ergebnisTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
#ergebnisTable td {
    padding: 8px;
    border: 1px solid #ccc;
}
#ergebnisTable td:first-child {
    text-align: left;
}
#ergebnisTable td:last-child {
    text-align: right;
}
