body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Empêche les barres de défilement */
}

/* Style du conteneur de la vidéo en arrière-plan */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Style de l'iframe YouTube pour qu'elle couvre toute la page */
.video-background iframe {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 56.25vw;  /* = 100vw * (9 / 16) => ratio 16:9 basé sur la largeur */
    width: 177.77vh;  /* = 100vh * (16 / 9) => ratio 16:9 basé sur la hauteur */
    min-height: 100%;
    min-width: 100%;
    pointer-events: none;
}

/* Style du conteneur de l'image centrée */
.image-container {
    position: absolute;
    top: 10%; /* top: 50%; */
    left: 50%; /* left: 50%; */
    transform: translate(-50%, -50%); /* Centrage parfait de l'image */
    z-index: 1; /* S'assure que l'image est au-dessus de la vidéo */
    text-align: center;
}

/* Style du conteneur de texte centré */
.text-container {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); /* Centrage parfait de l'image */
    z-index: 1; /* S'assure que l'image est au-dessus de la vidéo */
    text-align: center;
} 
.textos-l1
{
	vertical-align:middle;
	text-align: center;
	padding: 5px;
	color: white;
}
.textos-l2
{
	vertical-align:middle;
	text-align: center;
	padding: 5px;
	color: white;
}
.textos-tab
{
 height: 300px
}
.textos-titre
{
	font-size : small;
	vertical-align:top;
	text-align: center;
	padding: 7px;
	/*background-color: #007BFF;*/
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width : 100px;
	margin : 8px;
}
.textos-style
{
	font-size : small;
	vertical-align:top;
	padding: 7px 20px;
	text-align: left;
	/*background-color: #007BFF;*/
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width : 300px;
	margin : 8px;
}

.boutons-style {
	vertical-align:top;
	text-align: center;
	padding: 10px 10px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width : 40px;
	margin : 8px;
}
.boutons-container {
 	position: absolute;
    top: 13%;
    left: 50%; /* left: 50%; */
    transform: translate(-50%, -50%); /* Centrage parfait de l'image */
    z-index: 1; /* S'assure que l'image est au-dessus de la vidéo */
    text-align: center;
}
.image-container img {
    max-width: 80%; /* Pour la responsivité */
    height: auto;
	border: 1px solid black
}
table {
  background-color: rgba(128, 128, 128, 0.5); /* gris transparent à 50% */
  border-collapse: separate; /* nécessaire pour les angles arrondis */
  border-radius: 12px; /* arrondi des angles */
  overflow: hidden; /* pour que l'arrondi soit bien appliqué */
  border: 1px solid rgba(128, 128, 128, 0.3); /* bordure grise avec transparence */
}

th, td {
  padding: 8px;
  color: black; /* couleur du texte pour le contraste */
  border-bottom: 1px solid rgba(128, 128, 128, 0.3); /* séparation des lignes */
}

/* Pour éviter que la dernière ligne ait une bordure en bas */
tr:last-child td {
  border-bottom: none;
}

a {
	font-weight: bold;
  color: white; /* Couleur du lien par défaut */
  text-decoration: none; /* Pas de soulignement */
}

a:hover {
	font-weight: bold;
  color: red; /* Couleur du lien au survol */