/* Quill Lists Display Fix */
/* This file is separate to ensure it's not processed by Tailwind and removed */

/* Bullets for Quill list items */
[data-list="bullet"]::before {
  content: "•" !important;
  margin-right: 0.5em !important;
  font-weight: 700 !important;
}

/* Numbers for ordered lists - only in backoffice */
.backoffice [data-list="ordered"],
.ql-editor [data-list="ordered"] {
  display: list-item !important;
  list-style: decimal !important;
  list-style-type: decimal !important;
  list-style-position: inside !important;
  margin-left: 1.5rem !important;
}

/* Hide Quill UI elements */
.ql-ui {
  display: none !important;
}