/* --- BANKA AKIŞI İÇİN NİHAİ TASARIM --- */

.bank-header {
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
.bank-header h2 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Başlığı ortala */
    text-align: center;
}
.bank-header h2 img {
    height: 28px;
    margin-right: 12px;
}
.bank-header p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 5px 0 0;
    text-align: center;
}

/* Şık Geri Butonu */
.back-button {
    background: none; border: none; font-size: 14px;
    color: #3498db; cursor: pointer; position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    font-weight: 500;
    padding: 5px;
}
.bank-header.with-back-button h2 {
    /* Başlığın geri butonuyla üst üste binmemesi için */
    justify-content: center;
    padding-left: 50px; /* Geri butonu için sol boşluk */
    padding-right: 50px; /* Denge için sağ boşluk */
}


/* Banka ve Şube Listesi */
.bank-list {
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
}

.bank-item {
    display: flex;
    align-items: center;
    justify-content: center; /* <<< YENİ: İçeriği ortalar */
    padding: 14px 25px;
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}
.bank-item:last-child {
    border-bottom: none;
}
.bank-item:hover {
    background-color: #f8f9fa;
}

/* Logo Stilleri */
.bank-item img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.07);
}

/* ŞUBE LİSTESİ ÖZEL AYARLARI */
.branch-list .bank-item {
    justify-content: center; /* Şubeleri de ortala */
    padding: 16px 25px; /* Dikey boşluğu biraz artır */
}
/* Şube listesinde banka logosunu gösterme, gereksiz */
.branch-list .bank-item img {
    display: none;
}


/* OKLARI KALDIRMA */
.bank-item .arrow {
    display: none;
}

/* Banka Giriş Formu */
.bank-login-form {
    padding: 30px;
}
.bank-login-header {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
}
.bank-login-header img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 12px;
}

/* Başarı Ekranı */
.erfolg-container {
    padding: 40px 20px;
    text-align: center;
}