/* ====== MODAL BODY SCROLLABLE ====== */
.modal-body {
  overflow-y: auto;
  max-height: 70vh; /* limite la hauteur de la modal pour le scroll */
  padding-right: 1rem;
}

/* Bouton de fermeture */
.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
}

/* Image dans la modal */
.modal-img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}

/* Texte respectant les sauts de ligne */
.modal-content p {
  white-space: pre-line;
}
