.iban-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin: 40px 0;
}

.iban-section {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
}

.iban-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.iban-section label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.iban-section input {
    width: 65%;
    padding: 6px;
    border: 2px solid #3b3f4a;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 10px;
}
/* İki alanı yan yana göster (mobilde alta alta) */
.iban-section .iban-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .iban-section .iban-row {
    grid-template-columns: 1fr 1fr; /* yan yana */
    align-items: end;               /* input/select alt hizası */
    column-gap: 20px;
  }
}

.iban-section .iban-col label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
}

.iban-section .iban-col select,
.iban-section .iban-col input {
  width: 100%;
  box-sizing: border-box;
}

/* Butonu ortala */
.iban-section .iban-btn-row {
  text-align: center;
  margin-top: 10px;
}

.branchSelect {
    width: 30%;
    padding: 10px;
    border: 2px solid #3b3f4a;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 10px;
}

.orange-btn {
    display: inline-block;
    background: none;
    border: 2px solid #ed6a30;
    padding: 10px 20px;
    border-radius: 20px;
    color: #000;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.orange-btn:hover {
    background-color: #ed6a30;
    color: white;
}

.link {
    margin-left: 15px;
    color: #555;
    cursor: pointer;
    font-size: 14px;
}

.description {
    font-size: 13px;
    margin-top: 15px;
    color: #333;
    line-height: 1.5;
}

/* Tek form sayfasında konteyneri ortaya al */
.iban-container.single {
    justify-content: center;      /* yatay merkez */
    gap: 0;                       /* tek kart olduğu için boşluğu sıfırla (isteğe bağlı) */
}

/* Kart stili + maksimum genişlik ve tam ortalama */
.iban-container.single .iban-section {
   width: min(100%, 720px);
    max-width: 720px;
    margin: 0 auto;
    /* background: #fff; */
    border: 1px solid #161616;
    border-radius: 14px;
    padding: 24px 24px 28px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 10%);
}

/* Başlığı ortaya al, biraz daha güçlü tipografi */
.iban-container.single .iban-section h3 {
    text-align: center;
    font-size: 22px;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

/* Butonu ortala */
.iban-container.single .orange-btn {
    display: block;
    margin: 12px auto 0;
}

/* Açıklama metni için daha okunur satır genişliği */
.iban-container.single .description {
    
    margin: 14px auto 0;
    line-height: 1.6;
    color: #444;
}

/* Mobil iyileştirme */
@media (max-width: 768px) {
    .iban-container {
        margin: 20px 0;
        gap: 24px;
    }
    .iban-container.single .iban-section {
        padding: 18px;
        border-radius: 12px;
    }
    .iban-section input {
        width: 100%;
        font-size: 16px;
        padding: 6px;
        
    }
    .iban-section select {
        font-size: 16px;
        padding: 10px;
    }
    
    /* Sarmalayıcı: ok ikonu için */
.iban-section .select-wrap {
  position: relative;
}

/* iOS/Android/desktop aynı görünüm: native stili kapat, bizimkini uygula */
.iban-section select.branchSelect {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;

  width: 100%;
  padding: 12px 44px 12px 14px;   /* sağa ok için yer */
  min-height: 44px;               /* dokunmatik için rahat yükseklik */
  border: 2px solid #3b3f4a;
  border-radius: 10px;
  background-color: #fff;
  color: #333 !important;

  font-size: 16px;                /* iOS zoom’u engeller */
  line-height: 1.3;
  box-sizing: border-box;
}

/* Ok ikonu (CSS üçgen) */
.iban-section .select-wrap::after {
  content: "";
  position: absolute;
  top: 66%;
  right: 14px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #555;     /* okun rengi */
  pointer-events: none;
}

/* Odak/hover durumları */
.iban-section select.branchSelect:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(237,106,48,0.25);
  border-color: #ed6a30;
}

/* Eski Edge/IE okunu gizle (zararı yok) */
.iban-section select.branchSelect::-ms-expand { display: none; }

/* İsteğe bağlı: ilk seçenek (placeholder gibi) daha soluk görünsün */
.iban-section select.branchSelect option:first-child { color: #8a8f98; }

/* Koyu tema/site arkaplanı varsa kontrast için */
@media (prefers-color-scheme: dark) {
  .iban-section select.branchSel

}

