/* Scoped Quill rendering styles — only affect elements inside .quill-content */
.quill-content .ql-editor {
    padding: 0; /* remove editor padding when rendering */
    border: none;
    background: transparent;
    color: inherit;
    font-size: 1rem;
    line-height: 1.6;
}

/* Basic typographic styles for Quill-produced content */
.quill-content h1,
.quill-content h2,
.quill-content h3 {
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.quill-content p {
    margin: 0 0 1rem;
}

.quill-content ul,
.quill-content ol {
    margin: 0 0 1rem 1.25rem;
}

.quill-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5rem 0;
}

/* Remove Quill-specific toolbar artifacts if any accidentally included */
.quill-content .ql-toolbar,
.quill-content .ql-container.ql-snow {
    all: unset;
}
