/* Wallet Status Styling */
.footer-status {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 20px;
  background: rgba(30, 30, 50, 0.5);
  color: #aaa;
  font-size: 14px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.footer-status.connected {
  background: rgba(0, 230, 118, 0.15);
  color: #00e676;
  border: 1px solid rgba(0, 230, 118, 0.3);
}

/* Hide wallet status by default, show when connected */
#wallet-status {
  display: none;
}

#wallet-status.connected {
  display: inline-block;
}

/* Wallet button styling */
.footer-connect {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6b46c1 0%, #9f7aea 100%);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-connect:hover {
  background: linear-gradient(135deg, #805ad5 0%, #b794f4 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 92, 255, 0.3);
}

.footer-connect img.net-icon {
  width: 18px;
  height: 18px;
}