/*
 * Lexxy editor overrides.
 * Tailwind preflight resets list-style to none — restore it for Lexxy.
 * These rules need enough specificity to beat Tailwind's base reset.
 */

lexxy-editor ul,
.lexxy-content ul {
  list-style-type: disc !important;
  margin-inline-start: 1.5em;
  padding: 0;
}

lexxy-editor ol,
.lexxy-content ol {
  list-style-type: decimal !important;
  margin-inline-start: 1.5em;
  padding: 0;
}

lexxy-editor li.lexxy-nested-listitem,
.lexxy-content li.lexxy-nested-listitem {
  list-style-type: none !important;
}

.lexxy-content p + p {
  margin-top: 0.75em;
}
