  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;
    }
  }

  /* images non responsive in table */
.equipe {
  display: block;
  width: 450px; /* taille native */
  margin-bottom: 10px;
   /*  filter: grayscale(100%) contrast(120%) brightness(90%); */
  border: 2px solid #e6e6e6;
   /*    box-shadow: 2px 2px 6px rgba(0,0,0,0.2); */
}
.images-colonne {
  display: flex;
  flex-direction: column;
 /*  align-items: flex-start; alignement à gauche */
  align-items: center
}

 /*  axel */
 
.table-video {
  margin: 0 auto; /* centre le tableau dans la page */
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
}

.table-video td {
  vertical-align: middle;
  padding: 10px;
}

/* disposition par défaut (desktop) */
.table-video td:first-child {
  text-align: right;
  padding-right: 30px;
  width: 60%;
}

.table-video td:last-child {
  text-align: right;
  padding-left: 10px;
  width: 40%;
}

/* images flexibles */
.table-video td:last-child img.small,
.table-video td:last-child img.medium,
.table-video td:last-child img.large {
  max-width: 100%;   /* ne dépasse jamais la largeur de la cellule */
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;    /* centre sur mobile */
}

/* variantes */
.table-video td:last-child img.native {
  width: auto;
  max-width: none;
  height: auto;
  border-radius: 10px;
}

.table-video td:last-child img.native-max {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* adaptation smartphone */
@media (max-width: 600px) {
  .table-video, .table-video tr, .table-video td {
    display: block;
    width: 100%;
  }
  .table-video td:first-child,
  .table-video td:last-child {
    text-align: center; /* évite le décalage à droite */
    width: 100%;
    padding: 10px;
  }
}
.table-video td:last-child img.small {
  display: block;
  margin-left: auto;   /* pousse à droite */
  margin-right: 0;
  width: 120px;        /* ou la taille que tu veux */
  height: auto;
  border-radius: 10px;
}
.table-video td:last-child img.medium {
  display: block;
  margin-left: auto;   /* pousse l’image à droite */
  margin-right: 0;
  width: 175px;        /* ou la taille que tu veux garder */
  height: auto;
  border-radius: 10px;
}
/* option pour img.medium avec image au centre    */
/* .table-video td:last-child img.medium {   */
/*   display: block;   */
/*   margin: 0 auto;   */
/* }   */



/* formater paragraphe */
.paragraph-left   { text-align: left; }
.paragraph-right  { text-align: right; }
.paragraph-center { text-align: center; }
.paragraph-justify{ text-align: justify; }

/* tableaux Nations Unies */

.data-table {
  width: 100%;
  margin: 20px auto;
  font-size: 14px;
  color: inherit; /* hérite du texte de la page */
}

/* Responsive : scroll horizontal si trop de colonnes */
.data-table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
}