/* GP Document Theme — markdown typography for read-only document canvases.
   Used by MarkdownRenderer (.gp-doc-theme) in Library item view, Entity Notes
   view, and ContentDocumentCanvas. Keep in sync with Toast edit chrome in
   Content/Edit.razor and toastui-editor-contents so edit ↔ view look the same. */

.gp-doc-theme {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.75;
    color: #1e293b;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gp-doc-theme h1,
.gp-doc-theme h2,
.gp-doc-theme h3,
.gp-doc-theme h4,
.gp-doc-theme h5,
.gp-doc-theme h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a;
}

.gp-doc-theme h1 {
    font-size: 2.25rem;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.gp-doc-theme h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.gp-doc-theme h3 {
    font-size: 1.45rem;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}

.gp-doc-theme h4 {
    font-size: 1.25rem;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}

.gp-doc-theme h5 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.gp-doc-theme h6 {
    font-size: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.gp-doc-theme > :first-child {
    margin-top: 0;
}

.gp-doc-theme p {
    margin: 0.75rem 0;
    color: #1e293b;
}

.gp-doc-theme strong {
    font-weight: 700;
}

.gp-doc-theme em {
    font-style: italic;
}

.gp-doc-theme u {
    text-decoration: underline;
}

.gp-doc-theme s,
.gp-doc-theme del {
    text-decoration: line-through;
    color: #64748b;
}

.gp-doc-theme a {
    color: #2563eb;
    text-decoration: none;
}

.gp-doc-theme a:hover {
    text-decoration: underline;
}

.gp-doc-theme ul,
.gp-doc-theme ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.gp-doc-theme ul {
    list-style: disc;
}

.gp-doc-theme ol {
    list-style: decimal;
}

.gp-doc-theme li {
    margin: 0.4rem 0;
}

.gp-doc-theme li > p {
    margin: 0.25rem 0;
}

.gp-doc-theme blockquote {
    border-left: 4px solid #94a3b8;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #475569;
    font-style: italic;
}

.gp-doc-theme blockquote > :first-child {
    margin-top: 0;
}

.gp-doc-theme blockquote > :last-child {
    margin-bottom: 0;
}

.gp-doc-theme code {
    background: #f1f5f9;
    padding: 0.2rem 0.35rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.gp-doc-theme pre {
    background: #0f172a;
    color: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

.gp-doc-theme pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.gp-doc-theme table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.gp-doc-theme th {
    background: #f8fafc;
    text-align: left;
    padding: 0.6rem;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
}

.gp-doc-theme td {
    padding: 0.6rem;
    border-bottom: 1px solid #e2e8f0;
}

.gp-doc-theme hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.gp-doc-theme img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 6px;
}
