/* Deposit panel — additive styles that extend the existing .address-* system.
   Palette kept identical to style.css (dark #14181B panels, #202427 borders). */

/* The design's `.item`/`.status` rules set display:flex, which overrides the
   browser's [hidden] (display:none). Force hidden elements to stay hidden so the
   destination-tag row / status badge only appear when we unset `hidden`. */
[hidden] {
  display: none !important;
}

.deposit .address-content {
  padding-top: 90px;
}

/* Network pill shown inside the address label */
.pay-net {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  margin-left: 8px;
  border-radius: 40px;
  border: 1px solid #202427;
  background: #161a1d;
  color: #8f9296;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Amount field — mirrors .rule-field */
.pay-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #202427;
  padding: 0 14px;
  background: transparent;
}
.pay-amount > input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.096px;
}
.pay-amount > input::placeholder {
  color: #565b5f;
}
.pay-amount:focus-within {
  border-color: #2e70c9;
}
.pay-suffix {
  color: #707070;
  font-size: 15px;
  font-weight: 500;
}

.pay-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.pay-actions .button {
  cursor: pointer;
}

.pay-note {
  color: #8f9296;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.096px;
}

/* Status badge variants (extend .status) */
.pay-status::before {
  background-image: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #565b5f;
}
.pay-status--pending::before,
.pay-status--underpaid::before {
  background: #e0a420;
}
.pay-status--paid::before {
  background: #2fa96a;
}
.pay-status--expired::before {
  background: #c24b4b;
}
.pay-status--paid > p {
  color: #2fa96a;
}

@media (max-width: 760px) {
  .deposit .address-body {
    flex-direction: column;
    align-items: center;
  }
  .deposit .address-qr {
    width: 260px;
    height: 260px;
  }
}
