/* Styles for the rendered Markdown content */
.prose {
    color: #374151; /* gray-700 */
    line-height: 1.75;
}
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
}
.prose h1 { font-size: 2.25rem; } /* text-4xl */
.prose h2 { font-size: 1.875rem; } /* text-3xl */
.prose h3 { font-size: 1.5rem; } /* text-2xl */
.prose p, .prose ul, .prose ol, .prose blockquote, .prose pre {
    margin-bottom: 1.25rem; /* mb-5 */
}
.prose ul { list-style-type: disc; padding-left: 1.5em; }
.prose ol { list-style-type: decimal; padding-left: 1.5em; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: #4f46e5; text-decoration: underline; } /* text-indigo-600 */
.prose code {
    background-color: #e5e7eb; /* gray-200 */
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    font-family: monospace;
}
.prose pre {
    background-color: #1f2937; /* gray-800 */
    color: #d1d5db; /* gray-300 */
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}
.prose pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}
.prose blockquote {
    border-left: 4px solid #d1d5db; /* border-gray-300 */
    padding-left: 1rem;
    font-style: italic;
    color: #6b7280; /* gray-500 */
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
}
.prose th, .prose td {
    border: 1px solid #d1d5db; /* border-gray-300 */
    padding: 0.5rem 1rem;
}
.prose th {
    font-weight: 600;
    background-color: #f3f4f6; /* gray-100 */
}
