/* Global Lexxy editor overrides (apply to all editors in the app)
/* -------------------------------------------------------------------------- */

/* Lists inside the editor content area */
.lexxy-editor__content ul {
  list-style-type: disc;
  margin-left: 1em;
  margin-right: 1em;
}

.lexxy-editor__content ol {
  list-style-type: decimal;
  margin-left: 1em;
  margin-right: 1em;
}

/* Stick toolbar to top when scrolling */
lexxy-toolbar {
  position: sticky;
  top: 0;
  background-color: cornsilk;
  z-index: 1;
}

/* Hide features not used in this app */
.lexxy-editor__toolbar-button[name="highlight"] {
  display: none;
}

.lexxy-code-language-picker {
  display: none;
}

/* Align superscript button icon */
.lexxy-editor__toolbar-button[name="superscript"] {
  display: flex;
  align-items: center;
  justify-content: center;
}
