/* Rich text content styling - prevent overflow */
.rich-text-display {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.rich-text-display img {
    max-width: 100%;
    height: auto;
}

.rich-text-display table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.rich-text-display pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
}

/* Make hyperlinks obvious inside rich text blocks */
.rich-text-display a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}

.rich-text-display a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
