/* Style de la fenêtre modale */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

/* Style pour la fermeture de la fenêtre modale */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Style pour l'image agrandie */
.modal-content {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100vh;
}

/* Style pour l'animation de la fenêtre modale */
.modal-content, #close {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  } 
  to {
    transform: scale(1)
  }
}	 

.image-container {
  position: relative;
}	 

#lienAgrandir {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 7px;
} 
	
small {
 font-size: 0.8em;
}
		   
.centered-items {
    display: flex;
    align-items: center;
}
		 
.highlight {
    color: #f86868;  /* Change la couleur en rouge vif */
    font-weight: bold;  /* Gras */
    font-size: 1.2em;  /* Agrandir légèrement la taille */
    background-color: grey; /* Ajouter un fond jaune */
    padding: 0.2em 0.4em;  /* Ajouter un peu d'espace autour du texte */
    border-radius: 5px;  /* Ajouter des coins arrondis */
}