/**
 * Meeting Notes Style - Casual and readable
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10.5pt;
  line-height: 1.7;
  color: #1f2937;
  max-width: 8.5in;
  margin: 0.75in auto;
  padding: 0;
}

/* Title */
h1 {
  font-size: 20pt;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 0.1in 0;
  line-height: 1.2;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 0.1in;
}

/* Meeting metadata */
h1 + p {
  font-size: 9pt;
  color: #6b7280;
  margin: 0.05in 0;
  line-height: 1.6;
}

/* Section headers */
h2 {
  font-size: 14pt;
  font-weight: 600;
  color: #1f2937;
  margin: 0.2in 0 0.1in 0;
  padding: 0.08in;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
}

/* Subsection headers */
h3 {
  font-size: 11.5pt;
  font-weight: 600;
  color: #374151;
  margin: 0.15in 0 0.08in 0;
}

/* Horizontal rules */
hr {
  border: none;
  border-top: 1px dashed #d1d5db;
  margin: 0.15in 0;
}

/* Paragraphs */
p {
  margin: 0.08in 0;
}

/* Lists */
ul, ol {
  margin: 0.08in 0;
  padding-left: 0.3in;
  line-height: 1.8;
}

li {
  margin: 0.04in 0;
}

/* Checkboxes */
li:has(input[type="checkbox"]) {
  list-style: none;
  margin-left: -0.25in;
}

/* Bold - for names and emphasis */
strong {
  font-weight: 600;
  color: #111827;
}

/* Italic - for roles and notes */
em {
  font-style: italic;
  color: #6b7280;
}

/* Blockquotes - for important notes */
blockquote {
  margin: 0.1in 0.3in;
  padding: 0.1in 0.15in;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  font-style: italic;
  color: #92400e;
  font-size: 10pt;
}

blockquote p {
  margin: 0.05in 0;
}

/* Code/technical terms */
code {
  font-family: 'Courier New', monospace;
  background: #f3f4f6;
  padding: 0.02in 0.06in;
  border-radius: 3px;
  font-size: 9.5pt;
  color: #1e40af;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Emoji support for status indicators */
li:contains("✅"),
li:contains("❌"),
li:contains("⚠️") {
  font-weight: 500;
}

/* Risk indicators */
p:contains("⚠️") {
  background: #fef3c7;
  padding: 0.08in;
  border-left: 3px solid #f59e0b;
  margin: 0.08in 0;
}

/* Decisions */
ol li:contains("✅") {
  background: #d1fae5;
  padding: 0.05in;
  border-left: 3px solid #10b981;
  margin: 0.05in 0;
}

/* Action items styling */
h2:contains("Action Items") ~ ul li,
h3:contains("Action Items") ~ ul li {
  background: #fef3c7;
  padding: 0.06in;
  margin: 0.06in 0;
  border-left: 3px solid #f59e0b;
}

/* Attendees section */
h2:contains("Attendees") ~ ul li {
  font-weight: 500;
}

/* High priority items */
h4:contains("High Priority") ~ ul li {
  background: #fee2e2;
  padding: 0.05in;
  margin: 0.05in 0;
  border-left: 3px solid #ef4444;
}

/* Compact spacing */
h2 + h3 {
  margin-top: 0.1in;
}

/* Page breaks */
@media print {
  h2 {
    page-break-after: avoid;
  }

  blockquote {
    page-break-inside: avoid;
  }
}

/* Footer */
p:contains("Meeting adjourned"),
p:contains("Next scribe") {
  text-align: center;
  font-size: 9pt;
  color: #9ca3af;
  font-style: italic;
  margin-top: 0.15in;
}
