/* Markdown Content Styling */
.prose {
    max-width: 65ch;
    color: #374151;
}

.prose h1 {
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
    font-weight: 700;

}

.prose h2 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
    font-weight: 700;
}

.prose h3 {
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
    font-weight: 700;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    line-height: 1.75;
    text-align: justify;
}

.prose ul {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose code {
    color: #1F2937;
    font-weight: 600;
    font-size: 0.875em;
    background-color: #F3F4F6;
    padding: 0.2em 0.4em;
    border-radius: 0.25em;
}

.prose pre {
    color: #E5E7EB;
    background-color: #1F2937;
    overflow-x: auto;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding: 0.8571429em 1.1428571em;
}

.prose pre code {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: 400;
    color: inherit;
    font-size: 0.875em;
    line-height: 1.7142857;
}

/* Code block line numbers */
.highlight {
    margin: 1em 0;
    border-radius: 0.375rem;
    overflow: hidden;
}

.highlight pre {
    margin: 0;
    padding: 1em;
}

.highlight .lineno {
    color: #6B7280;
    padding-right: 1em;
} 