.buttonLignes{
    margin: 5px;
    width:300px;
    height:40px;
}

.image-container {
    width: 150px;
    height: 150px;
    overflow: hidden; /* Cache les parties de l'image qui dépassent */
    display: flex;    /* Pour centrer */
    justify-content: center; /* Centre horizontalement */
    align-items: center;     /* Centre verticalement */
}

.image-container img {
    width: 100%;       /* Remplit la largeur */
    height: 100%;      /* Remplit la hauteur */
    object-fit: contain; /* Maintient les proportions tout en couvrant l'espace */
}