.wallet-methods-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  margin-top: 12px;
}

.wallet-method-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px #0001;
  min-width: 98px;
  max-width: 124px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px 10px 8px;
  text-align: center;
  transition: box-shadow .15s, background .15s, transform .12s;
}
.wallet-method-card:hover {
  background: #f3f7ff;
  box-shadow: 0 6px 20px #1877f22e;
  transform: translateY(-2px) scale(1.03);
}
.wallet-method-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
.wallet-method-label {
  color: #1976d2;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* History card icon slightly smaller */
.wallet-history-card img {
  width: 32px;
  height: 32px;
}

/* Responsive for mobile */
@media (max-width:600px) {
  .wallet-methods-row {
    gap: 7px;
  }
  .wallet-method-card {
    min-width: 74px;
    max-width: 96px;
    padding: 9px 3px 8px 3px;
    font-size: 0.92em;
  }
  .wallet-method-card img {
    width: 27px;
    height: 27px;
  }
  .wallet-history-card img {
    width: 23px;
    height: 23px;
  }
}