.emi-container {
    width: 85%;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px auto; /* Changed to 'auto' for horizontal centering */
    padding: 0;
    background: #fafafa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.emi-toggle-header {
    background-color: #0068c8; /* Directly set blue color */
    color: #fff;
    padding: 20px 18px;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    cursor: pointer;
}

.toggle-icon {
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
}

.emi-content {
    padding: 15px;
}

.emi-bank-block {
    margin-bottom: 15px;
}

.emi-bank-dropdown {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.emi-bank-dropdown:hover {
    background-color: #f0f0f0;
}

.emi-bank-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: contain;
}

.emi-bank-dropdown-content {
    display: none;
    padding: 15px 0;
}

/* UPDATED TABLE STYLES (CENTER-ALIGNED) */
.emi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.emi-table th, 
.emi-table td {
    border: 1px solid #ddd;
    padding: 12px 8px; /* Slightly more padding */
    text-align: center !important; /* Force center alignment */
}

.emi-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.emi-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.emi-important-info {
    
    font-size: 14px;
    color: #000000;
    margin-top: 15px;
    line-height: 1.8;
    padding: 10px;
    background-color: #f0f7ff;
    border-left: 3px solid #007bff;
    border-radius: 3px;

}

.emi-important-info strong {
    color: #007bff;
}