.emi-calculator-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.input-group select {
    margin-top: 5px;
}

.calculate-button {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.calculate-button:hover {
    background: #2980b9;
}

.results-container {
    margin-top: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 16px;
}

.result-item span:first-child {
    color: #7f8c8d;
}

.result-item span:last-child {
    font-weight: bold;
    color: #27ae60;
}

.loading-spinner {
    text-align: center;
    font-size: 24px;
    color: #3498db;
    margin-top: 20px;
}

.fas {
    margin-right: 8px;
}