/**
 * SimpleTix WYSIWYG Base Styles
 */

.wysiwyg-content {
    line-height: 1.7;
    color: inherit;
}

.wysiwyg-content p {
    margin-bottom: 1rem;
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.wysiwyg-content h1 { font-size: 2.25rem; }
.wysiwyg-content h2 { font-size: 1.875rem; }
.wysiwyg-content h3 { font-size: 1.5rem; }
.wysiwyg-content h4 { font-size: 1.25rem; }
.wysiwyg-content h5 { font-size: 1.125rem; }
.wysiwyg-content h6 { font-size: 1rem; }

.wysiwyg-content ul,
.wysiwyg-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.wysiwyg-content ul {
    list-style-type: disc;
}

.wysiwyg-content ol {
    list-style-type: decimal;
}

.wysiwyg-content li {
    margin-bottom: 0.5rem;
}

.wysiwyg-content a {
    color: inherit;
    text-decoration: underline;
}

.wysiwyg-content a:hover {
    opacity: 0.8;
}

.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.wysiwyg-content blockquote {
    border-left: 4px solid currentColor;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

.wysiwyg-content code {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.875em;
}

.wysiwyg-content pre {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.wysiwyg-content pre code {
    background-color: transparent;
    padding: 0;
}

.wysiwyg-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.wysiwyg-content th,
.wysiwyg-content td {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    text-align: left;
}

.wysiwyg-content th {
    background-color: rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.wysiwyg-content hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}
