/* Compact deposit amount control (matches stake style, but narrower) */
.deposit-amt-stepper {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.deposit-amt-stepper--compact {
  max-width: 100%;
}

.deposit-amt-step-btn {
  flex: 0 0 auto;
  width: 42px;
  min-width: 42px;
  height: 48px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, #1e2534 0%, #161d2c 100%);
  color: #cbd5e1;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.deposit-amt-step-btn:hover {
  filter: brightness(1.08);
}

.deposit-amt-step-btn:active {
  transform: scale(0.97);
}

.deposit-amt-mid {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 48px;
  padding: 4px 8px 6px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.75);
  background: radial-gradient(circle at top, #111827 0%, #0b1220 70%);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
  box-sizing: border-box;
}

.mpesa-field--amount-compact,
.bank-field--amount-compact {
  width: 100%;
}

.deposit-amt-label {
  display: none;
}

.deposit-amt-value-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  min-width: 0;
}

.deposit-amt-currency {
  font-size: 18px;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  transform: translateY(1px);
}

.deposit-amt-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 74px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #f8fafc;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
  appearance: textfield;
}

.deposit-amt-input::-webkit-outer-spin-button,
.deposit-amt-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.deposit-amt-input::placeholder {
  color: #64748b;
}

.deposit-amt-input:focus {
  outline: none;
}

.mpesa-field--amount-compact .mpesa-label,
.bank-field--amount-compact .bank-label {
  display: none;
}
