.emi-calculator {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.input-group input,
.tenure-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
}

.tenure-input {
    display: flex;
    gap: 10px;
}

.tenure-input select {
    width: 120px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
}

#calculate-emi {
    width: 100%;
    padding: 15px;
    background: #F7B044;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

#calculate-emi:hover {
    background: #e69d3a;
    transform: translateY(-1px);
}

#results {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.result-label {
    color: #7f8c8d;
}

.result-value {
    color: #27ae60;
    font-weight: 700;
}

.fas {
    margin-right: 10px;
    color: #F7B044;
}