body {
  background-color: #131720;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f1f1f1;
}

/* .card {
  background-color: #1c1e26;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  border-radius: 6px;
} */

.card.payment-card {
  background-color: #1c1e26;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  border-radius: 6px;              
}

.poster-img {
  width: 100%;
  max-width: 280px;
  min-height: 260px;
  object-fit: cover;
  border: 3px solid white;
  border-radius: 4px;
}

.payment-provider-img.active {
  border: 2px solid #007bff;
  transform: scale(1.1);
}


/* Payment Detail Rows */
.payment-detail {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.2rem 0;
}

.payment-detail .label {
  color: #ccc;
  font-weight: 400;
  margin-right: 6px;
}

.payment-detail .colon {
  margin-right: 6px;
  color: #999;
}

.payment-detail .value {
  font-weight: 600;
  color: #fff;
}

/* Payment Selection */
.payment-selection {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-provider-img {
  width: 45px;
  height: 45px;
  cursor: pointer;
  border: 1px solid #ffffff88;
  border-radius: 6px;
  padding: 4px;
  background-color: #ffffff;
  transition: transform 0.2s ease;
}

.payment-provider-img:hover {
  transform: scale(1.05);
}

.payment-form {
  background-color: #f1f1f1;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.payment-form .form-control {
  font-size: 0.9rem;
}

/* Share Buttons */
.share-buttons {
  background-color: #1f2733;
  border-radius: 8px;
  padding: 8px 12px;
}

.share-buttons img {
  width: 26px;
  height: 26px;
  margin: 0 4px;
  transition: transform 0.2s ease;
}

.share-buttons img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 576px) {
  .poster-img {
    max-width: 100%;
    min-height: 240px;
    margin-bottom: 1rem;
  }

  .payment-info {
    text-align: center;
    width: 100%;
  }

  .payment-detail {
    justify-content: center;
  }

  .payment-selection {
    justify-content: center;
  }
}

/* NEW CLASSES TO REPLACE INLINE STYLES */
.max-700px {
  max-width: 700px;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.toast-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  display: none;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 14px;
}
/* .card.payment-card {
  background-color: #1c1e26;
  /* ... */
} */

