/* Custom Markdown Styling */
.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: bold;
}

.markdown-content h1 { font-size: 2em; }
.markdown-content h2 { font-size: 1.5em; }
.markdown-content h3 { font-size: 1.25em; }
.markdown-content h4 { font-size: 1.125em; }

.markdown-content p {
    margin-bottom: 1.25em;
    line-height: 1.6;
}

.markdown-content ul,
.markdown-content ol {
    margin-top: 0.5em;
    margin-bottom: 1.25em;
    padding-left: 2em;
}

.markdown-content ul li,
.markdown-content ol li {
    margin-bottom: 0.5em;
}

.markdown-content ul {
    list-style-type: disc;
}

.markdown-content ol {
    list-style-type: decimal;
}

.markdown-content strong {
    font-weight: bold;
}

.markdown-content em {
    font-style: italic;
}

.markdown-content blockquote {
    padding-left: 1em;
    border-left: 3px solid #cbd5e0;
    margin: 1.5em 0;
    color: #4a5568;
}

.markdown-content code {
    background-color: #edf2f7;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: monospace;
}

.markdown-content pre {
    background-color: #f7fafc;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.markdown-content pre code {
    background-color: transparent;
    padding: 0;
}

.markdown-content a {
    color: #4a5af4;
    text-decoration: underline;
}

.markdown-content a:hover {
    color: #3447e5;
}

.markdown-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
}

.markdown-content hr {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin: 2em 0;
}

/* Add more space between paragraphs */
.markdown-content p + p {
    margin-top: 1.5em;
}

/* Additional spacing improvements */
.markdown-content h2, 
.markdown-content h3, 
.markdown-content h4 {
    margin-top: 2em;
}

.markdown-content h1:first-child,
.markdown-content h2:first-child,
.markdown-content h3:first-child,
.markdown-content h4:first-child {
    margin-top: 0;
}

/* Improve list presentation */
.markdown-content ul li,
.markdown-content ol li {
    margin-bottom: 0.75em;
}

.markdown-content ul li:last-child,
.markdown-content ol li:last-child {
    margin-bottom: 0;
}

/* Better spacing for lists that contain paragraphs */
.markdown-content li p {
    margin-bottom: 0.5em;
}

.markdown-content li p:last-child {
    margin-bottom: 0;
}
