﻿
.image_titre {
 font-weight: bold;
 text-decoration: underline;
}

.lien {
	color: blue;
}

.sujet_h2 {
 color: navy;
}

.sujet_h3 {
  color: #005c7a;
  margin-top: 20px;
}

.divContent_h2 {
  color: #005c7a;
  margin-top: 20px;
}

.divContent_h3 {
  color: #005c7a;
  margin-top: 20px;
}

.divContent_li {
 padding-left: 40px;
}

.centrer {
 display : flex;
 justify-content: center;
}

.paragraphe_justifie {
/*  background-color: #EEEEEE;  */
   	width: 60vw;
   text-align: justify;
 text-justify: auto;	
}

.image_centre {
  text-align: center;
}

.image_illustration {
  text-align: center;
  margin: 10px;
}

.image_icone {

}

.image_left {
  text-align: left;
  margin: 10px;
}

.green_underline {
	color: #085908;
	text-decoration: underline;
    font-weight: bold;	
}

.blue_underline {
	color: #0024C3;
	text-decoration: underline;
    font-weight: bold;	
}

.fuchsia_underline {
	color: #ff00ff;
	text-decoration: underline;
    font-weight: bold;	
}

.olive_underline {
	color: #808040;
	text-decoration: underline;
    font-weight: bold;	
}

.maroon_underline {
	color: #800040;
	text-decoration: underline;
    font-weight: bold;	
}

.affiche_message {
 background-color: #777ee7;	
 color: #FFF;
 margin: 10px;
 }	

.italic {
 font-style: italic;	
}

.bold {
  font-weight: bold;
}

.noteTitre {
 color: blue;
 font-weight: bold;	
 background-color: #dbfdf7;	
 text-decoration: underline;
}
	
.noteTexte {
 color: blue;
 background-color: #dbfdf7;	
}

.attentionTitre {
 color: #ff0080;
 font-weight: bold;	
 background-color: #ffe1f0;	
 text-decoration: underline;
}
	
.attentionTexte {
 color: #ff0080;
 background-color: #ffe1f0;	
}

.prerequisTitre {
 color: #004000;
 font-weight: bold;	
 background-color: #dfffdf;	
 text-decoration: underline;
}
	
.prerequisTexte {
 color: #004000;
 background-color: #dfffdf;	
}

.numeros {
    color: yellow;             /* Texte jaune */
    background-color: blue;     /* Fond bleu */
    padding: 10px 10px;         /* Espace autour du texte pour faire un rectangle */
    border-radius: 10px;        /* Coins arrondis */
    display: inline-block;      /* Pour que le padding s'applique comme un rectangle */
    font-family: Arial, sans-serif;  /* Police Arial, avec fallback en sans-serif */
    font-weight: bold;               /* Texte en gras */    
}

.multiimg-container {     /*Image + Titre avec un comportement flexbox*/
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.multiimg-caption {       /*Image + Titre avec un comportement flexbox*/
    font-weight: bold;
    margin-bottom: 6px;
    text-align: left;
}

.multiimg-block img {    /*Image + Titre avec un comportement flexbox*/
    max-width: 100%;
    height: auto;
}

.doc-iframe50 {
    width: 50%;                  /* largeur 50% */
    aspect-ratio: 16 / 9;        /* ratio 16:9 */
    display: block;              /* nécessaire pour le centrage */
    margin: 40px auto;           /* centre horizontalement + marge haut/bas */
    border: none;                /* supprime la bordure par défaut */
    border-radius: 4px;         /* coins arrondis pour un look pro */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25),
                0 6px 12px rgba(0, 0, 0, 0.15); /* ombrage doux et moderne */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* effet hover */
}

/* Optionnel : effet au survol */
.doc-iframe50:hover {
    transform: translateY(-4px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35),
                0 10px 20px rgba(0, 0, 0, 0.2);
}

.doc-iframe70 {
    width: 70%;                  /* largeur 70% */
    aspect-ratio: 16 / 9;        /* ratio 16:9 */
    display: block;              /* nécessaire pour le centrage */
    margin: 40px auto;           /* centre horizontalement + marge haut/bas */
    border: none;                /* supprime la bordure par défaut */
    border-radius: 4px;         /* coins arrondis pour un look pro */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25),
                0 6px 12px rgba(0, 0, 0, 0.15); /* ombrage doux et moderne */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* effet hover */
}

/* Optionnel : effet au survol */
.doc-iframe70:hover {
    transform: translateY(-4px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35),
                0 10px 20px rgba(0, 0, 0, 0.2);
}
