.wallet-full{
    display: flex;
  justify-content: center; 
  gap: 1rem;
  flex-wrap: wrap;
}
.wallet-funds-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding-top:25px;
  padding-bottom:10px;
  padding-right:20px;
  padding-left:20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width:250px;
  max-width: 350px;
  margin: 1rem 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.dark-mode .wallet-funds-card {
    background-color:#1e1e1e;
}
.wallet-funds-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.wallet-funds-card h2 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  color:#7f00ff;
}
body.dark-mode .wallet-funds-card h2 {
    color:#00c6ff;
}
.wallet-funds-card p {
  font-size: 1rem;
  color:#333;
}
body.dark-mode .wallet-funds-card p {
    color:#fff;
}
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
button {
  transition: opacity 0.3s ease;
}
