.wysiwyg a {
    @apply text-blue-600 underline hover:no-underline;
}

.wysiwyg ul {
    @apply list-disc pl-6;
    margin: 0 0 1em 0;
}

.wysiwyg ol {
    @apply list-decimal pl-6;
  margin: 0 0 1em 0;
}

.wysiwyg p {
    margin: 1em 0 1em 0;
}

.wysiwyg ol li, .wysiwyg ul li {
    margin-bottom: 0.5em;
}

.wysiwyg ol li p, .wysiwyg ul li p {
    margin: 0.5em 0;
}

.wysiwyg > p:first-child {
    margin-top: 0;
}

.wysiwyg > p:last-child {
    margin-bottom: 0;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
    @apply font-bold;
}

.wysiwyg h1 {
    @apply text-5xl;
}

.wysiwyg h2 {
    @apply text-3xl;
}

.wysiwyg h3 {
    @apply text-2xl;
}

.wysiwyg h4 {
    @apply text-xl;
}

.wysiwyg h5 {
    @apply text-lg;
}

.wysiwyg h6 {
    @apply text-base;
}

.wysiwyg table {
    @apply border-collapse table-auto w-full max-w-[500px] mx-auto;
}

.wysiwyg tr {
    @apply border-t border-l;
}

.wysiwyg tr th {
    @apply font-bold bg-dark-violet text-white px-3 py-2 text-center border-b;
}

.wysiwyg tr td {
    @apply text-black px-3 py-2 text-center border-b border-r;
}

.wysiwyg tr th p {
    @apply mb-0 mt-0;
}

