/*
 * Lexxy editor customizations and fixes
 *
 * This file contains patches and custom styling for the Lexxy editor
 * to ensure proper rendering of links, lists, and other content.
 */

/* Lexxy editor link styling - only in editor content */
lexxy-editor .lexxy-editor__content a {
  color: #0066cc;
  text-decoration: underline;
}

/* Lexxy content list styling - show bullets and numbers */
.lexxy-content ul {
  list-style-type: disc;
  padding-left: 2rem;
}

.lexxy-content ol {
  list-style-type: decimal;
  padding-left: 2rem;
}

.lexxy-content li {
  list-style-type: inherit;
}
