/* StripeService Styles */

/* Payment Dialog Overlay */
.payment-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Payment Dialog Content */
.payment-dialog-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  padding: 40px;
  text-align: center;
  position: relative;
}

/* Payment Dialog Icons */
.payment-success-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.payment-cancel-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

/* Payment Dialog Headers */
.payment-success-title {
  color: #28a745;
  margin: 0 0 15px 0;
  font-size: 24px;
}

.payment-cancel-title {
  color: #dc3545;
  margin: 0 0 15px 0;
  font-size: 24px;
}

/* Payment Dialog Text */
.payment-dialog-text {
  color: #333;
  margin: 0 0 25px 0;
  font-size: 16px;
}

/* Payment Dialog Buttons */
.payment-dialog-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.payment-dialog-button:hover {
  transform: scale(1.05);
}

.payment-dialog-button:active {
  transform: scale(0.98);
}