.ifsc-wrap {
    max-width: 1100px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}

.ifsc-wrap h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.ifsc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.ifsc-table th,
.ifsc-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.ifsc-table th {
    background: #f7f7f7;
    width: 30%;
    text-align: left;
}

.ifsc-breadcrumbs {
    font-size: 14px;
    margin-bottom: 15px;
}

.ifsc-breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
}

.ifsc-breadcrumbs a:hover {
    text-decoration: underline;
}

.ifsc-long-content {
    margin-top: 30px;
    line-height: 1.7;
}

.ifsc-long-content h2,
.ifsc-long-content h3 {
    margin-top: 25px;
}

.ifsc-cheque {
    margin-top: 40px;
}

.ifsc-cheque img {
    margin-top: 10px;
    border: 1px solid #ddd;
    max-width: 100%;
}

/* ================================
   IFSC SEARCH FORM STYLING
================================ */

.ifsc-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.ifsc-search-form select {
    flex: 1 1 200px;
    min-width: 180px;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.ifsc-search-form button {
    padding: 12px 22px;
    font-size: 15px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.ifsc-search-form button:hover {
    background-color: #1e40af;
}

/* Mobile friendly */
@media (max-width: 600px) {
    .ifsc-search-form {
        flex-direction: column;
    }

    .ifsc-search-form button {
        width: 100%;
    }
}

