.emi-calculator-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.input-group i {
    margin-right: 10px;
    color: #666;
}

.input-group input,
.tenure-group select {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    font-size: 16px;
}

.tenure-group {
    position: relative;
}

.tenure-group select {
    appearance: none;
    padding-right: 30px;
}

.calculate-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.calculate-btn:hover {
    background: #0056b3;
}

.calculate-btn i {
    margin-right: 8px;
}

.results-container {
    margin-top: 25px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
}

.result-item span:first-child {
    color: #666;
}

.result-item span:last-child {
    font-weight: bold;
    color: #333;
}