.payment-confirmation-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  text-align: center;
}

.payment-success-message {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark-circle i {
  color: white;
  font-size: 40px;
}

.confirmation-details {
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.home-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.home-button:hover {
  background-color: #0056b3;
  color: white;
}

/* Add these to your existing styles */

.payment-pending-message {
  background-color: var(--wp--preset--color--base);
  border-radius: var(--wp--preset--spacing--20);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--wp--preset--spacing--40);
  text-align: center;
}

.payment-pending-message h1 {
  color: var(--wp--preset--color--contrast-2);
  margin-bottom: var(--wp--preset--spacing--30);
}

.payment-error-message {
  background-color: var(--wp--preset--color--base);
  border-radius: var(--wp--preset--spacing--20);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--wp--preset--spacing--40);
  text-align: center;
}

.error-circle {
  width: 80px;
  height: 80px;
  background-color: var(--wp--preset--color--contrast-3);
  border-radius: 50%;
  margin: 0 auto var(--wp--preset--spacing--30);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-circle i {
  color: var(--wp--preset--color--contrast-2);
  font-size: 40px;
}

.retry-button {
  display: inline-block;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  text-decoration: none;
  border-radius: var(--wp--preset--spacing--10);
  transition: background-color 0.3s;
  margin-top: var(--wp--preset--spacing--30);
}

.retry-button:hover {
  background-color: var(--wp--preset--color--contrast-2);
  color: var(--wp--preset--color--base);
}

.wpforms-conditional-info {
  margin: 10px 0;
  transition: opacity 0.3s ease;
}

.wpforms-info-box {
  background-color: #f9f9f9;
  border-left: 4px solid #0073aa;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wpforms-info-box p {
  margin: 0 0 10px 0;
}

.wpforms-info-box p:last-child {
  margin-bottom: 0;
}

#optional-stripe-form {
  margin-block: 2rem;
}

.stripe-loading-indicator {
  text-align: center;
  padding: 20px;
}

.stripe-loading-indicator .spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #3498db;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.stripe-loading-indicator p {
  color: #666;
  font-size: 14px;
  margin: 0;
}
