/* Grundlegende Stile für den gesamten Körper */
body {
  
    background-color: rgb(101, 87, 87);
    
    flex-wrap: wrap;
}

/* Titel-Stile */
.title-normal {
    margin-bottom: 10px; 
}

.title-large {
    margin-bottom: 10px; 
}

/* Eingabefelder */
.input,
.input-large,
.breite-normal,
.breite-large {
    width: 150px; 
    padding: 5px; 
    box-sizing: border-box; 
    margin-bottom: 5px; 
    outline-color: blue;
    background-color: rgb(134, 201, 170); 
}

.breite-normal {
    margin-top: 5px; 
}

.breite-large {
    margin-top: 7px; 
}

/* Abstände für Provision und Mehrwertsteuer */
.provision-mwst-small {
    margin-top: 20px; 
}

.provision-mwst-large {
    margin-top: 0px; 
}

.mwst-normal {
    margin-bottom: 20px; 
}

.mwst-large {
    margin-bottom: 0px; 
}

/* Buttons */
.btn-normal {
    margin-top: 5px; 
}

.btn-large {
    margin-top: 15px; 
}

/* Ergebnisse */
.result {
    background-color: #7593d4; /* Helle Hintergrundfarbe */
    padding: 8px; /* Innenabstand */
    margin-bottom: 5px; /* Abstand zwischen Ergebnissen */
    border: 1px solid #cccccc; /* Dezenter Rahmen */
    border-radius: 8px; /* Abrundung der Ecken */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    width: 30%; /* Breite der Ergebnisse */
}

.label {
    display: inline-block;
    width: 200px; /* Einheitliche Breite für Labels */
    font-weight: bold; /* Fettdruck */
    color: #0e0202; /* Dunkle Schriftfarbe */
}

fieldset {
    max-width: 300px; /* Maximale Breite des Fieldsets */
    padding: 20px; /* Innenabstand */
    background-color: #7593d4; /* Hintergrund des Fieldsets */
}

button {
    background-color: #7593d4; /* Hintergrundfarbe des Buttons */
    padding-bottom: 20px;

}



/* Media Queries für mobile Geräte */
@media (max-width: 768px) {
    .input,
    .input-large,
    .breite-normal,
    .breite-large {
        width: 100%; /* Vollständige Breite auf Tablets */
    }

    .result {
        width: 100%; /* Ergebnisse auch in voller Breite */
    }

    fieldset {
        max-width: 100%; /* Full Width auf Tablets */
    }

    .label {
        width: auto; /* Labelbreite automatisch */
    }
}

@media (max-width: 480px) {
    
    .input,
    .input-large,
    .breite-normal,
    .breite-large {
        width: 50%; /* Vollständige Breite auf Handys */
        font-size: 10px; /* Schriftgröße erhöhen */
        height: 10%; /* Höhe erhöhen für bessere Bedienbarkeit */
       
    }
    .result{
        width: 92%;
    }

    button {
        width: 100%; /* Button in voller Breite auf Handys */
      
        font-size: 10px; /* Schriftgröße erhöhen */
        height: 40px; /* Höhe erhöhen für bessere Bedienbarkeit */
    }

    .label {
        font-size: 16px; /* Schriftgröße für Labels erhöhen */
        width: 50%;
    }
    h2{
        color: #d3d8e2;
    }
    
}
