/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/
.ifsc-breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
}
.ifsc-breadcrumb a {
    text-decoration: none;
    color: #0073aa;
}
.ifsc-breadcrumb a:hover {
    text-decoration: underline;
}
.ifsc-pagination {
    margin-top: 30px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.ifsc-pagination a,
.ifsc-pagination .current {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ifsc-pagination a {
    background: #fff;
    color: #333;
}

.ifsc-pagination a:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.ifsc-pagination .current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: 600;
}
/* IFSC Search Styling */

.ifsc-search-wrapper {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    max-width: 800px;
}

.ifsc-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ifsc-search-wrapper select {
    flex: 1;
    min-width: 220px;
    padding: 10px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease;
}

.ifsc-search-wrapper select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
}

.ifsc-search-wrapper select:disabled {
    background: #f1f1f1;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .ifsc-row {
        flex-direction: column;
    }
}
.ifsc-search-wrapper h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}