.bank-ifsc-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.bank-ifsc-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.bank-ifsc-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}

.bank-ifsc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bank-ifsc-table th, .bank-ifsc-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.bank-ifsc-table th {
    background-color: #f2f2f2;
}

#reset-button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#reset-button:hover {
    background-color: #45a049;
}