.emi-box {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
}

.emi-label {
    font-weight: 600;
    font-size: 15px;
}

.emi-value {
    background: #eafff1;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: bold;
    color: #008000;
    margin-bottom: 6px;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #eee;
    outline: none;
    margin-bottom: 20px;
}

.results p {
    font-size: 15px;
    margin-bottom: 6px;
}

.legend-box {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 3px;
}

.legend-box.principal {
    background: #8ab4f8;
}

.legend-box.interest {
    background: #3b63ff;
}


.loan-type-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.loan-btn {
    padding: 8px 18px;
    background: #f4f6ff;
    border: 1px solid #c7d3ff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.loan-btn:hover {
    background: #e6ecff;
}

.loan-btn.active {
    background: #3b63ff;
    color: white;
    border-color: #3b63ff;
}


.eligibility-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
}

.loan-option-card {
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    transition: 0.2s;
}

.loan-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.loan-option-card h5 {
    font-size: 16px;
}
