/* WYSIWYG Content Styling */
/* Shared styles for content generated by Quill.js editor */

/* Lists */
.wysiwyg-content ul,
.wysiwyg-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.wysiwyg-content ul {
    list-style-type: disc;
}

.wysiwyg-content ol {
    list-style-type: decimal;
}

.wysiwyg-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.wysiwyg-content ul ul,
.wysiwyg-content ol ol,
.wysiwyg-content ul ol,
.wysiwyg-content ol ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

/* Text formatting */
.wysiwyg-content strong {
    font-weight: 600;
}

.wysiwyg-content em {
    font-style: italic;
}

.wysiwyg-content u {
    text-decoration: underline;
}

/* Blockquotes */
.wysiwyg-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0 6px 6px 0;
}

/* Code */
.wysiwyg-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9rem;
}

.wysiwyg-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Images */
.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
}

/* Horizontal rules */
.wysiwyg-content hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #eee;
}
