.markdown {
    all: initial;

    /* Text defaults */
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    font-family: system-ui, -apple-system, sans-serif;

    /* Paragraphs */
    p {
        margin-bottom: 1rem;
    }

    /* Headings */
    h1, h2, h3, h4, h5, h6 {
        font-weight: 600;
        line-height: 1.25;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        color: #111827;
    }

    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.25em; }
    h4 { font-size: 1em; }

    /* Lists */
    ul, ol {
        margin-left: 1.5rem;
        margin-bottom: 1rem;
    }

    ul { list-style-type: disc; }
    ol { list-style-type: decimal; }

    /* Links */
    a {
        color: #2563eb;
        text-decoration: underline;
        &:hover {
            color: #1d4ed8;
        }
    }

    /* Code blocks */
    pre {
        background-color: #f3f4f6;
        padding: 1rem;
        border-radius: 0.375rem;
        overflow-x: auto;
        margin: 1rem 0;
    }

    code {
        font-family: ui-monospace, monospace;
        font-size: 0.875em;
        background-color: #f3f4f6;
        padding: 0.2em 0.4em;
        border-radius: 0.25rem;
    }

    /* Blockquotes */
    blockquote {
        border-left: 4px solid #e5e7eb;
        padding-left: 1rem;
        margin: 1rem 0;
        color: #4b5563;
    }

    /* Tables */
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
    }

    th, td {
        border: 1px solid #e5e7eb;
        padding: 0.5rem;
        text-align: left;
    }

    th {
        background-color: #f9fafb;
    }
}