.blog-post-content .mermaid {
    box-sizing: border-box;
    width: 100%;
    margin: 1.5rem 0;
    padding: 1rem;
    overflow-x: auto;
    border: 1px solid var(--color-code-border);
    border-radius: var(--radius-md);
    background: #fffdf8;
    text-align: center;
}

.blog-post-content .mermaid svg {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.blog-post-content .mermaid.mermaid-error {
    color: var(--color-error);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.85rem;
    text-align: left;
    white-space: pre;
}

@media (prefers-color-scheme: dark) {
    .blog-post-content .mermaid {
        background: var(--color-code-bg);
    }
}

@media (max-width: 500px) {
    .blog-post-content .mermaid {
        margin-right: -14px;
        margin-left: -14px;
        width: calc(100% + 28px);
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }
}
