.wysiwyg-content h1 {
    font-size: 2rem !important;
    font-weight: bold !important;
    margin: 1rem 0 !important;
    color: inherit !important;
}

.wysiwyg-content h2 {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    margin: 0.8rem 0 !important;
    color: inherit !important;
}

/* Additional heading styles */
.wysiwyg-content h3 {
    font-size: 1.25rem !important;
    font-weight: bold !important;
    margin: 0.7rem 0 !important;
    color: inherit !important;
}

.wysiwyg-content h4 {
    font-size: 1.1rem !important;
    font-weight: bold !important;
    margin: 0.6rem 0 !important;
    color: inherit !important;
}

.wysiwyg-content h5 {
    font-size: 1rem !important;
    font-weight: bold !important;
    margin: 0.5rem 0 !important;
    color: inherit !important;
}

.wysiwyg-content h6 {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    margin: 0.4rem 0 !important;
    color: inherit !important;
}

/* Text formatting */
.wysiwyg-content strong {
    font-weight: bold !important;
}

.wysiwyg-content b {
    font-weight: bold !important;
}

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

.wysiwyg-content i {
    font-style: italic !important;
}

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

.wysiwyg-content s {
    text-decoration: line-through !important;
}

.wysiwyg-content strike {
    text-decoration: line-through !important;
}

/* Paragraph and spacing */
.wysiwyg-content p {
    margin: 0.5rem 0 !important;
    line-height: 1.6 !important;
}

/* Lists */
.wysiwyg-content ul {
    margin: 0.5rem 0 !important;
    padding-left: 1.5rem !important;
}

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

.wysiwyg-content li {
    margin: 0.2rem 0 !important;
}

/* Blockquotes */
.wysiwyg-content blockquote {
    margin: 1rem 0 !important;
    padding: 0.5rem 1rem !important;
    border-left: 4px solid #ccc !important;
    background-color: #f9f9f9 !important;
    font-style: italic !important;
}

/* Links */
.wysiwyg-content a {
    color: inherit !important;
    text-decoration: underline !important;
}

.wysiwyg-content a:hover {
    opacity: 0.8 !important;
}

/* Code and preformatted text */
.wysiwyg-content code {
    background-color: #f4f4f4 !important;
    padding: 0.2rem 0.4rem !important;
    border-radius: 3px !important;
    font-family: monospace !important;
    font-size: 0.9em !important;
}

.wysiwyg-content pre {
    background-color: #f4f4f4 !important;
    padding: 1rem !important;
    border-radius: 5px !important;
    overflow-x: auto !important;
    margin: 1rem 0 !important;
    font-family: monospace !important;
}

/* Tables */
.wysiwyg-content table {
    border-collapse: collapse !important;
    width: 100% !important;
    margin: 1rem 0 !important;
}

.wysiwyg-content th,
.wysiwyg-content td {
    border: 1px solid #ddd !important;
    padding: 0.5rem !important;
    text-align: left !important;
}

.wysiwyg-content th {
    background-color: #f2f2f2 !important;
    font-weight: bold !important;
}

/* Horizontal rule */
.wysiwyg-content hr {
    border: none !important;
    border-top: 1px solid #ddd !important;
    margin: 1.5rem 0 !important;
}

/* Images */
.wysiwyg-content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0.5rem 0 !important;
}

/* Div and span elements */
.wysiwyg-content div {
    margin: 0.2rem 0 !important;
}

.wysiwyg-content span {
    display: inline !important;
}

/* Address */
.wysiwyg-content address {
    font-style: italic !important;
    margin: 0.5rem 0 !important;
}

/* Small text */
.wysiwyg-content small {
    font-size: 0.8em !important;
}

/* Mark/highlight */
.wysiwyg-content mark {
    background-color: #ffeb3b !important;
    padding: 0.1rem 0.2rem !important;
}

/* Subscript and superscript */
.wysiwyg-content sub {
    font-size: 0.8em !important;
    vertical-align: sub !important;
}

.wysiwyg-content sup {
    font-size: 0.8em !important;
    vertical-align: super !important;
}

/* Definition lists */
.wysiwyg-content dl {
    margin: 0.5rem 0 !important;
}

.wysiwyg-content dt {
    font-weight: bold !important;
    margin-top: 0.5rem !important;
}

.wysiwyg-content dd {
    margin-left: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}