.wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  color: #f8fafc;
  cursor: pointer;
}

.wallet-pill__label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4af37;
}

.wallet-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.wallet-modal {
  width: min(480px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #0b111a;
  color: #e2e8f0;
  padding: 20px;
}

.wallet-modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.wallet-modal header button {
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
}

.wallet-modal-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.wallet-modal-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
}

.wallet-modal-form input[type="number"],
.wallet-modal-form input[type="text"] {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 10px 12px;
}

.wallet-modal-assets {
  display: flex;
  gap: 16px;
}

.wallet-modal-form button {
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.wallet-modal-result code {
  display: block;
  word-break: break-all;
  margin: 8px 0 12px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.wallet-modal-result .ok { color: #86efac; }
.wallet-modal-result .bad { color: #fca5a5; }
