.emi-calculator {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.calculator-header {
    text-align: center;
    margin-bottom: 25px;
}

.calculator-header i {
    font-size: 40px;
    color: #2ecc71;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.tenure-input {
    display: flex;
    gap: 10px;
}

.tenure-input select {
    width: 120px;
}

.calculate-btn {
    width: 100%;
    padding: 15px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.calculate-btn:hover {
    background: #27ae60;
}

.results {
    margin-top: 25px;
    display: none;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.result-icon {
    font-size: 24px;
    color: #2ecc71;
}

.result-text span {
    display: block;
    color: #666;
    font-size: 14px;
}

.result-text h4 {
    margin: 5px 0 0;
    color: #2c3e50;
}