/* Email Templates Styles */

/* Note: Email styles typically need to be inline for better compatibility */
/* These styles are provided as reference but should be inlined in email templates */

.email-body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.email-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.email-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.email-header {
  text-align: center;
  margin-bottom: 2rem;
}

.email-logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.email-title {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.warning-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9500 0%, #ff6b35 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.email-message {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-preview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  color: white;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

.email-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.email-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.email-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 0.9rem;
  text-align: center;
}

.email-footer p {
  margin: 0.5rem 0;
}

.email-footer a {
  color: #667eea;
  text-decoration: none;
}

.text-center {
  text-align: center;
}