/* === Quill List Fixes === */
.ql-editor ol,
.ql-editor ul {
  margin: 1em 0 1em 2rem !important;
  padding-left: 1.5rem !important;
  list-style-position: outside !important;
}

/* Ordered list */
.ql-editor ol {
  list-style-type: decimal !important;
}

/* Unordered list */
.ql-editor ul {
  list-style-type: disc !important;
}

/* Ensure list markers remain visible */
.ql-editor li {
  display: list-item !important;
  list-style: inherit !important;
}

/* Reset themes that hide markers via ::before */
.ql-editor li::before {
  content: none !important;
}

/* Nested lists */
.ql-editor ol ol,
.ql-editor ul ul {
  margin-left: 1.5rem !important;
}

/* iframe and pre layout */
.ql-editor iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  margin: 1.5rem 0;
}

.ql-editor pre,
.ql-editor code {
  background: #1e1e1e;
  color: #fff;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  font-family: monospace;
}
