body {
    margin: 0;
    font-family: Poppins;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr  1fr;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 980px;
    width: 100%;
    position: relative;
    margin: 6px;
}

.calculator-container::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(90deg, #DB00FF 0%, #FF5C00 100%);
    border-radius: 16px;
    z-index: -1;
}

.left-container,
.right-container {
    width: 100%;
}

.left-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.input-section:first-child .input-value {
    max-width: 72px;
}

.input-label {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.input-value {
    background: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    padding: 12px 5px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
    max-width: 100px;
    width: 100%;
    display: block;
}

.input-symbol {
    font-weight: 400;
    color: #808080;
}

.slider-container {
    margin: 20px 0 0;
    position: relative;
}

.slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #DB00FF 0%, #DB00FF var(--progress), #BFBFBF var(--progress), #BFBFBF 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 16px;
    color: #000;
}

.results-container {
    background: #ffeee5;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-box {
    background: white;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.result-value span:last-of-type {
    font-weight: 400;
    font-size: 16px;
}

.result-label {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.uplift-text {
    text-align: center;
    margin: 10px 0;
    padding: 20px;
    background: #FF5C00;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.uplift-text span {
    font-weight: 700;
    font-size: 24px;
}

@media (max-width: 768px) {
    .calculator-container {
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    svg {
        display: none;
    }
}