.loan-calc-container {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    border: 2px solid #d0202e;
    padding: 25px;
    max-width: 500px;
    margin: 30px auto;
}
.loan-calc-container h2 {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}
.calc-group {
    margin-bottom: 25px;
}
.calc-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 5px;
    background: #ccc;
    outline: none;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d0202e;
    cursor: pointer;
}
.value-display {
    margin-top: 5px;
    font-size: 14px;
    color: #d0202e;
    font-weight: bold;
}
.result-box {
    text-align: center;
    margin-top: 30px;
}
#repaymentAmount {
    font-size: 36px;
    font-weight: bold;
    color: #d0202e;
}
.disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}