/* Styling for rich text content display */
.rich-text-content {
    line-height: 1.6;
    font-size: 14px;
}

.rich-text-content h1,
.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4,
.rich-text-content h5,
.rich-text-content h6 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.rich-text-content p {
    margin-bottom: 1rem;
}

.rich-text-content ul,
.rich-text-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.rich-text-content blockquote {
    border-left: 4px solid #e9ecef;
    padding-left: 1rem;
    color: #6c757d;
    margin-left: 0;
    margin-right: 0;
}

.rich-text-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
    overflow-x: auto;
}

.rich-text-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.rich-text-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.rich-text-content table th,
.rich-text-content table td {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
}

.rich-text-content table th {
    background-color: #f8f9fa;
}

.rich-text-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.rich-text-content figure {
    margin: 1rem 0;
}

.rich-text-content figcaption {
    font-size: 0.875em;
    color: #6c757d;
    text-align: center;
}