/* -------------------------------------------------------
   Froala editor content area — Tailwind reset overrides
   Scoped to .fr-element so nothing outside is affected
------------------------------------------------------- */

.fr-element ul,
.fr-view ul {
    list-style-type: disc !important;
    padding-left: 1.75em !important;
    margin: 0.5em 0 !important;
}

.fr-element ol,
.fr-view ol {
    list-style-type: decimal !important;
    padding-left: 1.75em !important;
    margin: 0.5em 0 !important;
}

.fr-element li,
.fr-view li {
    display: list-item !important;
    padding-left: 0 !important;
    margin: 0.2em 0 !important;
}

.fr-element ul ul,
.fr-view ul ul {
    list-style-type: circle !important;
    margin: 0 !important;
}

.fr-element ul ul ul,
.fr-view ul ul ul {
    list-style-type: square !important;
}

.fr-element ol ol,
.fr-view ol ol {
    list-style-type: lower-alpha !important;
}

/* Rendered HTML output outside the editor (read-only display) */
.brilliance-rte-output ul {
    list-style-type: disc;
    padding-left: 1.75em;
    margin: 0.5em 0;
}

.brilliance-rte-output ol {
    list-style-type: decimal;
    padding-left: 1.75em;
    margin: 0.5em 0;
}

.brilliance-rte-output li {
    display: list-item;
    margin: 0.2em 0;
}

.brilliance-rte-output ul ul { list-style-type: circle; }
.brilliance-rte-output ul ul ul { list-style-type: square; }
.brilliance-rte-output ol ol { list-style-type: lower-alpha; }
