/* Markdown rendering tweaks */
.prose h1, .prose h2, .prose h3, .prose h4 {
  color: #0f172a;
  font-weight: 700;
  margin-top: 1.5rem;
}
.prose p { color: #1f2937; line-height: 1.75; }
.prose a { color: #4338ca; text-decoration: underline; }
.prose code { background: #f3f4f6; padding: 0.15rem 0.4rem; border-radius: 6px; font-size: 0.9rem; }
.prose pre {
  background: #0f172a;
  color: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  overflow-x: auto;
}
.prose blockquote {
  border-left: 4px solid #c7d2fe;
  padding-left: 1rem;
  color: #475569;
  background: #eef2ff;
}
.prose img { border-radius: 12px; margin: 1rem 0; }
.prose ul { list-style: disc; padding-left: 1.25rem; }
.prose ol { list-style: decimal; padding-left: 1.25rem; }
.prose table { width: 100%; border-collapse: collapse; }
.prose table th, .prose table td { border: 1px solid #e2e8f0; padding: 0.5rem; }
