/* genel */
.tda-transfer-widget { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; box-shadow:0 10px 25px rgba(0,0,0,.05); }

/* başlık barı: reverse sağ üstte */
.tda-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.tda-title { margin:0; }
.tda-reverse-top { display:flex; align-items:center; gap:8px; font-weight:600; }

/* 4 kolon grid – alt hizalama */
.tda-layout-4col .tda-grid-4 {
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.7fr;
  gap:16px;
  align-items:end;
}
.tda-col { display:flex; flex-direction:column; gap:12px; }
.tda-col-continue { display:flex; align-items:flex-end; }

.tda-field label { display:block; font-weight:600; margin-bottom:6px; }
.tda-field input[type="text"],
.tda-field input[type="date"],
.tda-field select,
.tda-field input[type="number"] {
  width:100%; height:42px; line-height:42px; padding:0 10px; box-sizing:border-box;
}

/* stepper */
.tda-stepper { display:flex; align-items:center; gap:6px; }
.tda-stepper input { width:82px; text-align:center; height:42px; line-height:42px; }
.tda-stepper .tda-minus, .tda-stepper .tda-plus {
  width:42px; height:42px; border:1px solid #ddd; border-radius:8px; background:#fafafa; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}

/* Google Places dropdown bazı temalarda görünmeyebilir – z-index yükselt */
.pac-container { z-index: 999999; }

/* responsive */
@media (max-width: 1100px){
  .tda-layout-4col .tda-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .tda-layout-4col .tda-grid-4 { grid-template-columns: 1fr; }
  .tda-col-continue { align-items:stretch; }
  .tda-continue { width:100%; }
}
