body {
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    text-align: center;
}

.container {
    max-width: 800px;
    margin: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 4px;
    line-height: 1.4;
    border: 1px solid #ddd;
    text-align: left;
}

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

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.horizontal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.radio-group {
    display: flex;
    flex-direction: column; /* Stellt sicher, dass der Titel über den Buttons bleibt */
    margin: 20px 0;
}

.radio-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

.radio-buttons {
    display: flex; /* Wichtig: Die Radio-Buttons horizontal nebeneinander ausrichten */
    gap: 20px; /* Abstand zwischen den Buttons */
}

.logo-container {
    display: flex;
    flex-direction: column; /* Bild und Text übereinander innerhalb eines Buttons */
    align-items: center;
}

.radio-group label {
    margin-right: 15px;
    font-size: 1rem;
    cursor: pointer;
}

.radio-group img {
    width: auto;
    height: 40px;
    display: block;
    margin: auto;
}

.calculate-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.button-row {
    display: flex;
    justify-content: flex-end;
    margin: 20px;
    gap: 10px;
}

.button-row input[type="button"] {
    background-color: #90ee90;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

.button-row input[type="button"]:hover {
    background-color: #32cd32;
}

#Anzeige {
    background-color: #add8e6; /* Hellblauer Hintergrund */
    color: black; /* Textfarbe */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: block; /* Block-Element, um zentrierbar zu sein */
    margin: 0 auto; /* Zentriert den Button horizontal */
}

#Anzeige:hover {
    background-color: #5fa9d2; /* Dunkleres Hellblau bei Hover */
}

.spacer {
    width: 150px; /* Abstand in Pixeln */
    display: inline-block;
}

p#copyright {
    text-align: left;
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

.scaled-logo {
    width: 18%; /* Verkleinert das Bild auf 71 % der Originalgröße */
    height: auto; /* Behält die Proportionen automatisch bei */
}