.kostenrechner {
    background: rgba(255, 255, 255, 0.1); /* Transparenter Hintergrund */
    backdrop-filter: blur(10px); /* Unschärfe-Effekt */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
}

.kostenrechner p,
.kostenrechner label {
    color: white;
}

.fahrtkosten-form button {
    margin-bottom: 50px; /* Lücke von 50px zwischen Button und Ergebnisbereich */
}

.fahrtkosten-form {
    font-family: Arial, sans-serif;
    background: transparent;
}

.fahrtkosten-form label, .fahrtkosten-form input, .fahrtkosten-form select, .fahrtkosten-form button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.fahrtkosten-form input, .fahrtkosten-form select, .fahrtkosten-form button {
	color: black;
}

.kostenrechner #ergebnis {
    margin-top: 50px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1); /* Transparenter Hintergrund */
    border-color: white;
    border-radius: 5px;
}

.kostenrechner #ergebnis p {
    margin: 5px 0;
    font-weight: bold;
}

.kostenrechner #ergebnis span {
    color: black; /* Textinhalt für die Preise auf schwarz setzen */
    font-weight: bold; /* Preise fett */
    display: inline-block;
    padding: 0 5px;
    border: 1px solid black; /* Umrandung um die Preise */
    border-radius: 5px; /* Abgerundete Ecken für die Preise */
    background-color: rgba(255, 255, 255, 0.3); /* Leicht transparent hinter den Preisen */
}

