/* Payment Modal Styles */
.payment-option {
  transition: all 0.3s ease;
}

.payment-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.payment-option .card {
  border-width: 2px;
  background-color: #2c2c2c !important;
  color: #ffffff !important;
}

.payment-option .btn {
  min-width: 150px;
  font-weight: 600;
}

/* Coin balance card styling */
#coin-balance-info .card {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
  color: #000000 !important;
  border: 2px solid #ffca28 !important;
}

#coin-balance-info .card-title {
  color: #000000 !important;
}

/* Payment summary styling */
.payment-summary .card {
  background-color: #1a1a1a !important;
  border: 2px solid #444444 !important;
}

.payment-summary .card-header {
  background: linear-gradient(135deg, #333333 0%, #444444 100%) !important;
  color: #ffffff !important;
  border-bottom: 1px solid #555555 !important;
}

.payment-summary .card-body {
  background-color: #222222 !important;
  color: #ffffff !important;
}

/* Success option styling */
#coins-only-option .card {
  background: linear-gradient(135deg, #155724 0%, #28a745 100%) !important;
  border: 2px solid #28a745 !important;
  color: #ffffff !important;
}

#coins-only-option .card-title {
  color: #ffffff !important;
}

#coins-only-option .card-text {
  color: #e0e0e0 !important;
}

/* Info option styling */
#mixed-payment-option .card {
  background: linear-gradient(135deg, #0c5460 0%, #17a2b8 100%) !important;
  border: 2px solid #17a2b8 !important;
  color: #ffffff !important;
}

#mixed-payment-option .card-title {
  color: #ffffff !important;
}

#mixed-payment-option .card-text {
  color: #e0e0e0 !important;
}

/* Primary option styling */
#paypal-only-option .card {
  background: linear-gradient(135deg, #004085 0%, #007bff 100%) !important;
  border: 2px solid #007bff !important;
  color: #ffffff !important;
}

#paypal-only-option .card-title {
  color: #ffffff !important;
}

#paypal-only-option .card-text {
  color: #e0e0e0 !important;
}

/* Processing animation */
#payment-processing .spinner-border {
  width: 3rem;
  height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-option .d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .payment-option .btn {
    margin-top: 1rem;
    width: 100%;
  }
  
  .modal-dialog.modal-lg {
    margin: 1rem;
  }
}

/* Icon styling */
.payment-option .fas,
.payment-option .fab {
  margin-right: 0.5rem;
}

/* Card hover effects */
.payment-option .card:hover {
  border-color: #007bff !important;
}

#coins-only-option .card:hover {
  border-color: #28a745 !important;
}

#mixed-payment-option .card:hover {
  border-color: #17a2b8 !important;
}

/* Button animations */
.payment-option .btn {
  transition: all 0.2s ease;
}

.payment-option .btn:hover {
  transform: scale(1.05);
}

/* PayPal container styling */
#paypal-button-container {
  min-height: 200px;
  padding: 1rem;
  border: 2px dashed #6c757d;
  border-radius: 0.5rem;
  background-color: #343a40;
}

/* Modal content improvements */
.modal-content {
  background-color: #212529 !important;
  border: 1px solid #444444 !important;
}

.modal-header {
  border-bottom: 1px solid #444444 !important;
}

.modal-footer {
  border-top: 1px solid #444444 !important;
}

/* Text readability improvements */
.text-muted {
  color: #adb5bd !important;
}

/* Button contrast improvements */
.payment-option .btn-success {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: #ffffff !important;
}

.payment-option .btn-info {
  background-color: #17a2b8 !important;
  border-color: #17a2b8 !important;
  color: #ffffff !important;
}

.payment-option .btn-primary {
  background-color: #007bff !important;
  border-color: #007bff !important;
  color: #ffffff !important;
} 