/* Start custom CSS for shortcode, class: .elementor-element-40ffd0e *//* Styling für das Reisekostenformular */
.reisekosten-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

/* Header-Stil (Anlehnung an das Orange des Logos) */
.reisekosten-form h3 {
    color: #f39200; /* Typisches Orange */
    border-bottom: 2px solid #f39200;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.reisekosten-form h4 {
    margin-top: 25px;
    font-size: 1.1em;
    color: #444;
}

/* Eingabefelder Layout */
.reisekosten-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.reisekosten-form input,
.reisekosten-form input[type="number"],
.reisekosten-form input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Fokus auf die Berechnungsfelder */
.reisekosten-form p {
    background: #f9f9f9;
    padding: 10px;
    border-left: 4px solid #f39200;
    font-style: italic;
}

/* Highlight für den Endbetrag */
.gesamtbetrag-box {
    background-color: #f39200;
    color: white;
    padding: 20px;
    text-align: right;
    font-size: 1.4em;
    margin-top: 30px;
    border-radius: 4px;
}

.gesamtbetrag-box span {
    display: block;
    font-size: 0.7em;
    font-weight: normal;
}

/* Sende-Button */
.wpcf7-submit {
    background-color: #333;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}

.wpcf7-submit:hover {
    background-color: #f39200;
}

/* Trennlinien */
hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 25px 0;
}/* End custom CSS */