.vp-cards {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
  min-height: 120px;
}

.vp-cards .card {
  width: 80px;
  height: 120px;
  font-size: 24px;
  position: relative;
  cursor: pointer;
}

.vp-cards .card.held::after {
  content: "HOLD";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 0;
}

.vp-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.vp-payouts {
  padding: 15px;
  border-radius: 5px;
  max-width: 300px;
  margin: 20px auto;
}

.vp-payouts ul {
  margin: 10px 0;
  padding-left: 20px;
}

.vp-payouts li {
  margin: 5px 0;
}