  body {
    background-color: #484A4C; /*  */
    /* margin: 0;  */
    /* padding: 0; */
  }

table td:nth-child(2) {
  text-align: right;
}

table td:nth-child(2) .bbImageWrapper {
  margin-left: auto;
  margin-right: auto;
}

        /* Styles CSS pour la fenêtre modale */
        .modal {
            display: none; /* Masquée par défaut */
            position: fixed; /* Reste en place même en faisant défiler la page */
            z-index: 1; /* Se place au-dessus de tout le reste */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4); /* Fond semi-transparent */
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto; /* Centre la boîte verticalement et horizontalement */
            padding: 20px;
            border: 2px solid #888;
            width: 60%; /* Largeur de la boîte */
            text-align: center;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

		.modal-content p {
            font-size: 20px; /* Taille du texte en pixels */
            /* ou */
            /* font-size: 1.2em; */
}

		.modal-content p {
            color: #333333; /* Un gris foncé pour un texte plus doux que du noir pur */
			}
			
		.modal-content p {
            font-weight: bold; /* Texte en gras */
            font-style: italic; /* Texte en italique */
}
		.evidence {
		background: #eee; border-left: 3px solid #999; padding: 2px 0 2px 20px; margin: 12px 0;
}

      /* Styles CSS pour Blockquote */
.custom-quote {
  border-left: 4px solid #3498db;
  padding: 1em;
  margin: 1em 0;
  background-color: #5F737E;
  font-style: italic;
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.custom-quote p {
  margin: 0.5em 0;
}

.expandable .quote-content {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.expandable.expanded .quote-content {
  max-height: 1000px; /* ou auto si tu veux tout afficher */
}

.expand-btn {
  background: none;
  border: none;
  color: #3498db;
  cursor: pointer;
  font-size: 0.9em;
  margin-top: 0.5em;
}
  /* add-on Responsive mobile blockquote */
  @media (max-width: 600px) {
    blockquote {
      padding: 0.8em;
      font-size: 0.95em;
      word-wrap: break-word;
      box-sizing: border-box;
      max-width: 100%;
    }

    .expand-btn {
      font-size: 0.85em;
    }
  }



