.emi {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f5f5;
    flex-direction: column;
}

.container-emi {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

.container-emi h2 {
    margin-bottom: 15px;
    color: #333;
}

.input-group-emi {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

label {
    font-weight: bold;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.calc {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.calc:hover {
    background: #218838;
}
.calci {
    width: 100%;
    background: #F0F0F0;

    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.calci:hover {
    background: #FFF8DC;
}

.result-container-emi {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.result-info-emi {
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
}

.result-info p {
    font-size: 14px;
    margin: 5px 0;
    font-weight: bold;
    color: #333;
}

.progress-container {
    margin-top: 15px;
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #ff5722;
    width: 0;
    transition: width 0.5s ease-in-out;
}

.apply-button {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #0056b3;
}