/* Fix for Tailwind prose lists and justification */

/* Fix bullet and numbered list markers to appear inside the content area */
.prose ul,
.prose ol {
  list-style-position: inside !important;
  padding-left: 1.25rem !important;
  margin-left: 0 !important;
}

/* Ensure list items can be justified and have consistent spacing */
.prose li {
  margin-bottom: 0.5rem;
  text-align: justify; /* Allow justified list items */
}

/* Apply justification to paragraphs as well */
.prose p {
  text-align: justify;
}
