/***********************************************
*
*		Feuille de style des écrans de film
*
***********************************************/

/*	Affiche du film */


.affichefilm {
	text-align: center;
}

.affichefilm img {
	width:300px;
	cursor: pointer;
}


/*****************************
* Gestion de la gallerie
*****************************/
.listingimage
{
	width:300px;
	height:167px;
	margin:1px;	
}

#galerie-modal {
    display: none;
    position: fixed;
    z-index: 1000; /* S'assure qu'il soit au-dessus des autres éléments */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permet le scroll si l'image est trop grande */
    background-color: rgba(0,0,0,0.8); /* Assombrissement avec transparence */
}

#galerie-modal-content {
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%; 
    max-height: 80%; 
    width: auto; 
    height: auto;
}

#galerie-fermer {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}