body{
    background-color: black;
    
}
.pricing-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* stack on small screens */
  margin: 40px 0;
  font-family: Arial, sans-serif;
}

.pricing-tile {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 24px 20px;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-tile.bronze {
  border-top: 4px solid #cd7f32;
}

.pricing-tile.silver {
  border-top: 4px solid #c0c0c0;
}

.pricing-tile.gold {
  border-top: 4px solid #e3ce14;
}

.plan-title.bronze {
  color: #cd7f32;
}

.plan-title.silver {
  color: #c0c0c0;
}

.plan-title.gold {
  color: #e3ce14;
}

.plan-features {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.plan-features li {
  margin-bottom: 6px;
}

.plan-price {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 4px;
  color: #555;
}

/* Make PayPal button fill width of tile container area */
#paypal-button-container-bronze,
#paypal-button-container-gold,
#paypal-button-container-silver {
  margin-top: 4px;
}

/* Optional: small screen tweaks */
@media (max-width: 600px) {
  .pricing-tile {
    max-width: 100%;
  }
}
