@tailwind base;
@tailwind components;
@tailwind utilities; 

/* WYSIWYG Content Styles */
.wysiwyg-content h1 {
    font-size: 2.25rem;  /* text-4xl */
    font-weight: 700;    /* font-bold */
    margin-bottom: 1rem; /* mb-4 */
}

.wysiwyg-content h2 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.wysiwyg-content h3 {
    font-size: 1.5rem;   /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wysiwyg-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
}

.wysiwyg-content ol {
    list-style-type: decimal;
    list-style-position: inside;
    margin-bottom: 1rem;
}

.wysiwyg-content li {
    margin-bottom: 0.25rem;
}

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

.wysiwyg-content blockquote {
    padding-left: 1rem;
    border-left: 4px solid #d1d5db;
    font-style: italic;
    margin: 1rem 0;
}

.wysiwyg-content pre {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.25rem;
    margin: 1rem 0;
}

.wysiwyg-content code {
    background-color: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}