@media (max-width: 1100px) {
   
    /*Eingabe Formatierung*/
    .input-container {
        position: relative;
    }

    .input-container input {
        width: 100%;
        padding: 10px;
        padding-right: 35px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .input-container .input-symbol {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #868789;
        pointer-events: none;
    }

 
    /*Formatierung der Jahres auswahl*/
    .laufzeit-container {
        display: flex;
        border: 1px solid #ccc;
        border-radius: 5px;
        overflow: hidden;
        width: fit-content;
    }
    .laufzeit-option {
        padding: 10px 15px;
        cursor: pointer;
        text-align: center;
        border-right: 1px solid #ccc;
        user-select: none;
    }
    .laufzeit-option:last-child {
        border-right: none;
    }
    .laufzeit-option.active {
        background-color: #97bf0e;
        color: white;
        font-weight: bold;
    }

    /*Formatierung bei einem Rechenfehler*/
    .error-container {
        margin: 20px auto;
        padding: 15px;
        background-color: #ffe6e6;
        border-left: 5px solid #cc0000;

        color: #cc0000;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
        border-radius: 5px;
    }





    /*Ergebnisse formatieren*/
    .result-container {
        text-align: center;  
        margin-top: 50px;
        display: flex;
        flex-direction: column; 
        align-items: center;  
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }
    .result-line {
        width: 100px;
        height: 2px;
        background-color: #ccc;
        margin: 5px auto 10px;
    }

    .box {
        text-align: center;
        flex: 1;
        min-width: 200px; 
    }
    .box h4 {
        margin-top: 20px;
        margin: 0;
        font-size: 14px;
        color: #666;
    }
    .box p {
        font-size: 24px;
        font-weight: bold;
        margin: 5px 0 0;
        color: #97bf0e;
    }



    .footer-note{
        margin-top: 30px;
        padding-bottom: 15px;
        font-size: 15px;
        color: #878787;
        background-color: #f9f9f9;

        margin-left: 15px;
        margin-right: auto;
    }
    .footer-note h4{
        font-size: 20px;
        color: #97bf0e; 
    }




    /* Haushaltsrechner */
    .haushaltsrechner_h2 {
        color: #97bf0e;
        margin-top: 50px;
        text-align: left;
    }

    .Haushaltsrechner_container {
        display: flex;
        flex-direction: column; 
        gap: 30px; 
    }

    .Haushaltsrechner_section {
        display: flex;
        flex-direction: column; 
    }

    .input-container {
        display: flex;
        align-items: center;
        border: 1px solid #ccc;
        padding: 5px;
        border-radius: 5px;
        margin-bottom: 15px; 
    }

    .input-container input {
        border: none;
        outline: none;
        flex: 1;
        padding: 5px;
        font-size: 16px;
    }

    .input-symbol {
        margin-left: 5px;
        font-weight: bold;
    }

    

    /* Ausgabe & Kreis */
    .result-container {
        display: flex;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .chart-container {
        display: none;
        position: relative;
        width: 160px;
        height: 160px;
    }

    .circle-text {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: bold;
        font-size: 18px;
    }

    svg  {
        transform: rotate(-90deg);
    }




    .Haushaltsrechner_container_ergebniss {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;

    }


    .Haushaltsrechner_container_ergebniss h3 {
        margin-bottom: 10px;
        font-size: 23px;
        font-weight: bold;
        color: #97bf0e;
        text-align: left;

    }

    .Haushaltsrechner_container_box_h4 {
        font-size: 20px;
        color: #878787;
        text-align: center;
        margin-bottom: 0px;
    }

    .result-line-haushalts-rechner{
        width: 100px;
        height: 2px;
        background-color: #ccc;
        margin: 5px auto 10px;
    }

    .Haushaltsrechner_container_box p {
        margin-top: 3px;
        font-size: 20px;
        color: #97bf0e;
        text-align: center;
    }

}