
.films-details {
    display: flex;  /* Utilise flexbox pour l'alignement */
    margin-right: 1%;
    margin-left: 1%;
    text-align: justify;
}

.films {
    width: 250px; 
    height: 350px; 
    border-radius: 5px; /* Ajoute un léger arrondi aux coins */
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px; /* Ajoute un espacement supérieur */
}

.info-row {
    display: flex;
    gap: 5%; 
}

.info-row p {
    margin: 0;
    margin-bottom: 2%;
}

.films-info {
    margin-top: 4%;
    font-size: 17px;
    margin-right: 2%;
    text-align: justify;
    line-height: 150%;
}

.note-films-etoile {
    width: 100px; /* Largeur de l'élément */
    height: 100px; /* Hauteur de l'élément */
    margin-bottom: -45px; /* Ajuste la position verticale de l'élément */
    margin-top: -10%;
}

.info-etoile {
    margin-top: -2%;
}

.titre {
    font-family: "Blanka-Regular"; 
    font-size: 50px;
    text-align: center;
    margin-bottom: 7%;
    margin-top: -5%;
    cursor: default;
}

.separateur {
    margin-top: 7%;
    margin-bottom: 10%;
    max-width: 70%;
}

.bande-annonce {
    display: flex;
    justify-content: center; 
}

.commentaire {
    margin-top: 5%;
    margin-bottom: 5%;
    margin-left: 2%;
    margin-right: 2%;
    font-size: 17px;
    text-align: justify;
    padding: 10px;
    border-radius: 10px;
    line-height: 150%;
}

.form-commentaire {
    display: flex;
    flex-direction: column;
    margin-left: 3%;
}

#pseudo {
    margin-top: 10px;
    max-width: 30%;
    border: 1px solid #ccc; 
    border-radius: 10px; 
    padding: 10px; 
}

#commentaire {
    margin-top: 10px;
    width: 90%;
    border: 1px solid #ccc; 
    border-radius: 10px; 
    padding: 10px; 
}

label {
    font-family: "Blanka-Regular";
    font-size: 20px; 
    margin-bottom: 5px; 
}

.envoyer-button {
    background-color: #D76C58;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    max-width: 31.5%;
    font-family: "Blanka-Regular";
}

.envoyer-button:hover {
    background-color: #C65B4D;
    transition: background-color 0.3s ease;
}
