/* assets/css/bank-ifsc.css - prefixed to avoid conflicts */
.ankush-bank-ifsc-wrap {
  max-width: 980px;
  margin: 18px auto;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(22,27,32,0.06);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111;
}

.ankush-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.ankush-field {
  flex: 1 1 240px;
  min-width: 180px;
}

.ankush-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #222;
}

.ankush-bank-ifsc-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e6e9ee;
  background: #fcfdff;
  font-size: 14px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.ankush-bank-ifsc-select:focus {
  border-color: #f59e0b; /* subtle orange focus */
  box-shadow: 0 6px 18px rgba(245,158,11,0.08);
}

/* output container */
.ankush-ifsc-output {
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  background: #fbfbfb;
  border: 1px solid #f0f0f2;
  font-size: 14px;
  color: #111;
  min-height: 48px;
}

/* table styles */
.ankush-ifsc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,0.03);
  border-radius: 8px;
  overflow: hidden;
}

.ankush-ifsc-table th {
  text-align: left;
  background: #f9fafb;
  padding: 10px 12px;
  font-weight: 700;
  border: 1px solid #eef2f6;
  width: 35%;
  vertical-align: top;
  font-size: 13px;
  color: #111827;
}

.ankush-ifsc-table td {
  padding: 10px 12px;
  border: 1px solid #eef2f6;
  font-size: 14px;
  color: #111;
}

.ankush-ifsc-table code {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 6px;
  background: #f5f5f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
  font-size: 13px;
}

/* Responsive: stack rows for small screens */
@media (max-width: 640px) {
  .ankush-row {
    flex-direction: column;
  }
  .ankush-field { min-width: auto; width: 100%; }
  .ankush-ifsc-table th,
  .ankush-ifsc-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .ankush-ifsc-table tr {
    display: block;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
  }
  .ankush-ifsc-table th {
    background: transparent;
    font-weight: 700;
    padding-top: 8px;
  }
  .ankush-ifsc-table td {
    padding-bottom: 12px;
  }
}


