/* assets/css/wallet-modal.css */

.wallet-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Keep dark blurred overlay */
  backdrop-filter: blur(4px);
}

.wallet-modal-content {
  background: linear-gradient(to bottom, #0B4F40, #11966A);
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  max-width: 420px;
  margin: 8% auto;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: walletFade 0.4s ease;
  color: #fff
}

@keyframes walletFade {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.wallet-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  transition: 0.2s ease;
}

.wallet-close:hover {
  color: #ff4d4f;
}

.wallet-modal-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #C0F576; /* Light Lime Green */
  
}

.wallet-modal-subtitle {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 25px;
  color: #C0F576
}

.wallet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 12px;
  border: 2px solid #eee;
  background: #f8f8f8;
  border-radius: 10px;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.wallet-option img {
  width: 28px;
  height: 28px;
}

.wallet-option:hover {
  background: #ffffff;
  border-color: #222;
  transform: translateY(-2px);
}
.wallet-status{display:flex;align-items:center;gap:.75rem;margin-top:12px;
  padding:.6rem .8rem;border:1px solid rgba(255,255,255,.15);
  border-radius:12px;background:rgba(255,255,255,.06);backdrop-filter:blur(8px);
  color:#e7f6ef}
.wallet-status .ws-dot{width:10px;height:10px;border-radius:50%;
  background:#22c55e;box-shadow:0 0 0 3px rgba(34,197,94,.25)}
.wallet-status .ws-network{font-weight:600;opacity:.95}
.wallet-status .ws-balance{margin-left:auto;font-variant-numeric:tabular-nums}
.wallet-status .wallet-disconnect{border:1px solid rgba(255,255,255,.25);
  background:transparent;color:#fff;padding:.35rem .6rem;border-radius:10px;cursor:pointer;font-size:.9rem}
.wallet-status .wallet-disconnect:hover{background:rgba(255,255,255,.1)}
