.emi-calculator-container {
    font-family: 'Arial', sans-serif;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.emi-calculator-container h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.emi-calculator-container h3 i {
    margin-right: 10px;
    color: #3498db;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group label i {
    margin-right: 8px;
    color: #3498db;
    width: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
}

.tenure-container {
    display: flex;
}

.tenure-container .form-control:first-child {
    flex: 3;
    margin-right: 10px;
}

.tenure-container .form-control:last-child {
    flex: 1;
}

.btn-calculate {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-calculate:hover {
    background-color: #2980b9;
}

.result-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.result-container h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
}

.result-container h4 i {
    margin-right: 10px;
    color: #27ae60;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-label {
    font-weight: 600;
    color: #7f8c8d;
}

.result-value {
    font-weight: 700;
    color: #27ae60;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .emi-calculator-container {
        padding: 15px;
    }
    
    .tenure-container {
        flex-direction: column;
    }
    
    .tenure-container .form-control:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }
}