/*
 * Banshee.chat Email Styles
 * These styles are auto-inlined by premailer-rails
 *
 * Brand Colors:
 * - Primary Mint: #5EEAD4
 * - Dark Background: #0C0E12
 * - Card Background: #141820
 * - Body Text: #E4E4E7
 * - Muted Text: #A1A1AA
 * - Light Text: #71717A
 */

/* Base email styles */
body {
  margin: 0;
  padding: 0;
  background-color: #18181B;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.email-wrapper {
  background-color: #18181B;
}

.email-container {
  max-width: 600px;
  width: 100%;
}

/* Header */
.email-header {
  background-color: #0C0E12;
  border-radius: 8px 8px 0 0;
  padding: 24px 32px;
  text-align: center;
}

.email-logo {
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.email-brand {
  color: #5EEAD4;
  font-size: 24px;
  font-weight: 700;
  margin: 12px 0 0 0;
  letter-spacing: -0.5px;
}

/* Mint accent bar */
.email-accent {
  background-color: #5EEAD4;
  height: 4px;
}

/* Content */
.email-content {
  background-color: #141820;
  padding: 40px 32px;
}

/* Footer */
.email-footer {
  background-color: #0C0E12;
  border-radius: 0 0 8px 8px;
  padding: 24px 32px;
  text-align: center;
}

.email-footer-text {
  color: #71717A;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.email-footer-subtext {
  color: #52525B;
  font-size: 12px;
  margin: 12px 0 0 0;
}

/* Typography */
.email-title {
  color: #FAFAFA;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.email-text {
  color: #E4E4E7;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.email-text-muted {
  color: #A1A1AA;
  font-size: 14px;
  line-height: 1.6;
  margin: 24px 0 0 0;
}

.email-text-small {
  color: #71717A;
  font-size: 13px;
  line-height: 1.6;
  margin: 24px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid #27272A;
}

.email-highlight {
  color: #5EEAD4;
  font-weight: 600;
}

/* Buttons */
.email-button-wrapper {
  margin: 32px 0;
}

.email-button {
  background-color: #5EEAD4;
  border-radius: 6px;
}

.email-button a,
a.email-button-link {
  display: inline-block;
  padding: 14px 28px;
  color: #0C0E12;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

/* Callouts/Notices */
.email-notice {
  background-color: rgba(94, 234, 212, 0.1);
  border-left: 4px solid #5EEAD4;
  border-radius: 4px;
  padding: 16px;
  margin: 24px 0;
}

.email-notice-text {
  color: #5EEAD4;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Links */
.email-link {
  color: #5EEAD4;
  word-break: break-all;
}

/* Utility */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}
