/* General body styling, overridden by Tailwind in HTML but good for fallback */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom styles for Markdown content rendered by prose classes */
.prose {
    color: #E5E7EB; /* Light gray for text */
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #6EE7B7; /* Teal for headings */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600; /* Semi-bold */
}

.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 h4 { font-size: 1.25rem; } /* text-xl */

.prose p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.prose ul, .prose ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
    list-style-position: outside;
}

.prose ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}

.prose ol li {
    list-style-type: decimal;
    margin-bottom: 0.5em;
}

.prose a {
    color: #38BDF8; /* Light blue for links */
    text-decoration: underline;
}

.prose strong {
    color: #E5E7EB;
    font-weight: 700;
}

.prose em {
    font-style: italic;
}

.prose code {
    background-color: #4B5563;
    color: #F3F4F6;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.875em;
}

.prose pre {
    background-color: #1F2937;
    color: #F3F4F6;
    padding: 1em;
    border-radius: 0.5rem;
    overflow-x: auto;
}

.prose blockquote {
    border-left: 4px solid #6EE7B7;
    padding-left: 1em;
    margin-left: 0;
    font-style: italic;
    color: #9CA3AF;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.prose th, .prose td {
    border: 1px solid #4B5563;
    padding: 0.75em;
    text-align: left;
}

.prose th {
    background-color: #374151;
    font-weight: 600;
}
