<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#post-content-html {
    flex-grow: 1; /* Fill available vertical space */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 15px; /* Add padding around the content */
    box-sizing: border-box;
    width: 100%; /* Take full width */
    max-width: 90ch; /* Limit width for readability */
    margin: 0 auto; /* Center the block */
    font-size: 0.9em; /* Base font size for content */
    line-height: 1.7; /* Improve line spacing */
    color: var(--text-normal);
}

/* Basic Markdown Element Styling */
#post-content-html h1,
#post-content-html h2,
#post-content-html h3,
#post-content-html h4,
#post-content-html h5,
#post-content-html h6 {
    color: var(--text-normal);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

#post-content-html h1 { font-size: 1.8em; }
#post-content-html h2 { font-size: 1.5em; }
#post-content-html h3 { font-size: 1.3em; }
/* Add more as needed */

#post-content-html p {
    margin-bottom: 1em;
    white-space: pre-wrap; /* Preserve whitespace and newlines */
}

#post-content-html a {
    color: var(--icon-color-purple); /* Use purple for links */
    text-decoration: none;
}
#post-content-html a:hover {
    text-decoration: underline;
}

#post-content-html ul,
#post-content-html ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

#post-content-html li {
    margin-bottom: 0.4em;
}

#post-content-html blockquote {
    border-left: 3px solid var(--border-color);
    padding-left: 1em;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1em;
    color: var(--text-muted);
    font-style: italic;
}

/* Table Styling Fix */
#post-content-html table {
    width: 100%; /* Make table take full width */
    border-collapse: collapse; /* Collapse borders */
    margin-bottom: 1em;
    table-layout: fixed; /* Change from auto to fixed */
    border: 1px solid var(--border-color); /* Add border around table */
}

#post-content-html th,
#post-content-html td {
    border: 1px solid var(--border-color); /* Border for cells */
    padding: 8px 12px; /* Padding within cells */
    text-align: left; /* Align text left */
    vertical-align: top; /* Align content top */
    word-wrap: break-word; /* Ensure long words wrap within cells */
}

#post-content-html th {
    background-color: var(--background-secondary); /* Header background */
    font-weight: 500; /* Make headers bolder */
}

/* Styling for code blocks *within* Markdown */
#post-content-html pre {
    background-color: var(--background-secondary); /* Use secondary for code blocks */
    padding: 1em;
    margin-bottom: 1em;
    overflow-x: auto; /* Allow horizontal scrolling for long code lines */
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

#post-content-html pre code {
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.85em;
    line-height: 1.5;
    white-space: pre; /* Preserve whitespace within code blocks */
    word-wrap: normal; /* Prevent wrapping inside code blocks */
    word-break: normal; /* Prevent breaking inside code blocks */
    /* Text color is handled by Prism */
}

/* Inline code */
#post-content-html code:not(pre &gt; code) {
    background-color: var(--background-tertiary);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.85em;
    color: var(--text-normal);
}
</pre></body></html>