/* Adjuster Email Document Styles */
/* Based on customer_explainer.css - provides typography styling for markdown content */

/* Primary document container */
.adjuster-email-document {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
  box-shadow: 0 32px 80px -35px rgba(15, 23, 42, 0.95);
}

/* Base content typography */
.adjuster-email-content {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #e2e8f0;
}

/* Headings */
.adjuster-email-content h1,
.adjuster-email-content h2,
.adjuster-email-content h3,
.adjuster-email-content h4 {
  color: #f8fafc;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
}

.adjuster-email-content h2 {
  font-size: 1.35rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.15);
  padding-bottom: 0.35rem;
  margin-top: 2rem;
}

.adjuster-email-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

/* First h2/h3 doesn't need top border/margin */
.adjuster-email-content h2:first-child,
.adjuster-email-content h3:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.adjuster-email-content h4 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
}

/* Paragraphs */
.adjuster-email-content p {
  margin-bottom: 1em;
  line-height: 1.75;
}

/* Lists */
.adjuster-email-content ul,
.adjuster-email-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.15em;
  margin-top: 0.5em;
}

.adjuster-email-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.adjuster-email-content ul {
  list-style-type: disc;
}

.adjuster-email-content ol {
  list-style-type: decimal;
}

/* Nested lists */
.adjuster-email-content ul ul,
.adjuster-email-content ol ol,
.adjuster-email-content ul ol,
.adjuster-email-content ol ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* Strong/Bold text */
.adjuster-email-content strong {
  color: #f1f5f9;
  font-weight: 600;
}

/* Emphasis/Italic - used for line references */
.adjuster-email-content em {
  font-size: 0.85rem;
  color: #94a3b8; /* slate-400 */
  font-style: italic;
  display: block;
  margin: 0.25em 0;
}

/* Links */
.adjuster-email-content a {
  color: #60a5fa; /* blue-400 */
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.5);
  text-underline-offset: 2px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.adjuster-email-content a:hover {
  color: #93c5fd; /* blue-300 */
  text-decoration-color: rgba(96, 165, 250, 1);
}

/* Blockquotes - for OEM citations */
.adjuster-email-content blockquote {
  border-left: 3px solid #3b82f6; /* blue-500 */
  padding-left: 1rem;
  margin: 1rem 0;
  color: #cbd5e1; /* slate-300 */
  font-style: italic;
  background: rgba(59, 130, 246, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.adjuster-email-content blockquote p {
  margin-bottom: 0.5em;
}

.adjuster-email-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Code/monospace (if used for part numbers, etc.) */
.adjuster-email-content code {
  background: rgba(51, 65, 85, 0.5);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
  color: #e2e8f0;
}

/* Horizontal rules */
.adjuster-email-content hr {
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin: 1.5rem 0;
}

/* Tables (if generated) */
.adjuster-email-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.adjuster-email-content th,
.adjuster-email-content td {
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.adjuster-email-content th {
  background: rgba(51, 65, 85, 0.3);
  font-weight: 600;
  color: #f1f5f9;
}

/* Print styles */
@media print {
  .adjuster-email-document {
    background: white;
    border: none;
    box-shadow: none;
  }

  .adjuster-email-content {
    color: #1e293b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
    line-height: 1.6;
  }

  .adjuster-email-content h1,
  .adjuster-email-content h2,
  .adjuster-email-content h3,
  .adjuster-email-content h4 {
    color: #0f172a;
    page-break-after: avoid;
  }

  .adjuster-email-content a {
    color: #1e293b;
    text-decoration: underline;
  }

  .adjuster-email-content blockquote {
    border-left-color: #64748b;
    background: #f8fafc;
    color: #334155;
  }

  .adjuster-email-content strong {
    color: #0f172a;
  }
}
