.ifsc-container {
    max-width: 1000px;
    margin: 40px auto;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #333;
}

.ifsc-header {
    text-align: center;
    margin-bottom: 30px;
}

.ifsc-header h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.ifsc-breadcrumbs {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.ifsc-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.ifsc-breadcrumbs span {
    color: #64748b;
    margin: 0 8px;
}

/* Search Form */
.ifsc-search-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.ifsc-form {
    display: flex;
    gap: 15px;
}

.ifsc-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.ifsc-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ifsc-button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ifsc-button:hover {
    background: #1d4ed8;
}

/* Card Grid */
.ifsc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ifsc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: #1e293b;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    min-height: 80px;
}

.ifsc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: #2563eb;
}

/* Table Style for Details */
.ifsc-details-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ifsc-details-table th,
.ifsc-details-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.ifsc-details-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    width: 30%;
}

.ifsc-details-table tr:last-child th,
.ifsc-details-table tr:last-child td {
    border-bottom: none;
}

.ifsc-code-highlight {
    background: #eff6ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1em;
    font-weight: 700;
    color: #1d4ed8;
}
