#price-input {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}

.calculator-container {
    padding: 1.4rem
}

.input-container {
    padding: 5px 20px;
    align-items: center;
    display: flex;
}

input#charger-cost {
    width: 100%;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    #price-input {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .input-container {
        padding: 0px 10px;
    }

    input#charger-cost {
        width: 240px;
    }

    .calculator-container {
        padding: 2rem 2rem 1rem 2rem;
        border-radius: 16px;
    }

}

#price-question {
    font-size: 18px;
    margin-bottom: 0px;
    max-width: 400px;
}

#warning {
    color: #f56c6c;
    font-weight: bold;
    margin-top: 10px;
}

.result {
    margin: 10px 0;
    font-size: 18px;
}

.result span {
    font-weight: bold;
    font-size: 24px;
}

.final-result {
    background-color: #f3f3f3;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: stretch;
    /* Ensure children stretch to the full height of the parent */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    /* Add inner shadow */
}

.final-result #final-amount {
    background-color: #D77D54;
    color: white;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 8px;
    flex-grow: 1;
    display: flex;
    /* Use flexbox to align text within the box */
    align-items: center;
    /* Center text vertically */
    justify-content: center;
    /* Center text horizontally */
}

#text-for-0 {
    padding: 20px 40px;
    display: flex;
    /* Use flexbox to align text within the box */
    align-items: center;
    /* Center text vertically */
}

#zero {
    font-size: 28px;
    margin-right: 6px;
}

@media (max-width: 768px) {
    #text-for-0 {
        padding: 10px 16px;
    }

    #zero {
        margin-right: 4px;
    }

    .final-result #final-amount {
        padding-left: 16px;
        padding-right: 16px;
    }

    .zero-padding-mobile {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

.ff-el-section-break .ff-el-section-title {
    margin-top: 12px;
}