/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 .prose {
  @apply prose prose-lg prose-blue max-w-none;
}

.prose h1 {
  @apply text-3xl font-bold text-gray-900 p-4;
}

.prose h2 {
  @apply text-2xl font-semibold text-gray-800 p-4;
}

.prose p {
  @apply text-gray-700 leading-relaxed p-4;

  margin-bottom: 1em; /* Ajoute un espace entre les paragraphes */

}

.prose ul {
  @apply list-disc list-inside p-4;
}

.prose li {
  @apply p-2
}


.prose ol {
  @apply list-decimal list-inside p-4;
}

.prose code {
  @apply bg-gray-100 text-red-600 px-1 rounded;
}

.prose pre {
  @apply bg-gray-800 text-white p-4 rounded-md overflow-x-auto;
}
