.ewallet-card {
  transition: transform 0.3s ease;
}

.ewallet-card:hover {
  transform: scale(1.05);
  animation: bounce 0.5s;
}

.method-icon {
  font-size: 24px;
  margin-right: 15px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.deposit-card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
}

.instructions-box {
  background-color: #002147;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  color: #ffffff;
  padding: 15px;
}

.chevron-right {
  margin-left: auto;
  font-size: 24px;
  color: #6c757d;
}

.deposit-method-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
