 /* Styles pour la fenï¿½tre pop-up */
    #popup-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      display: none;
    }
    
    #popup-content {
      position: relative;
      top: -20px; /* Rï¿½duire la valeur pour remonter davantage le pop-up */
      max-width: 800px;
      max-height: 600px;
    }
    
    #popup-close {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
    }

    /* Rï¿½duire davantage la taille de l'image */
    #popup-content img {
      max-width: 600px;
      max-height: 600px;
    }
    
      @media screen and (max-width: 421px) {
      #popup-content img {
      max-width: 500px;
      max-height: 500px;
    }
    }