body {
    display: flex;
    flex-wrap: wrap;
  }
  
  .thumbnail {
    margin: 10px;
  }
  
  .thumbnail-image {
    width: 100px; /* Adjust the thumbnail size as needed */
    height: auto;
    cursor: pointer;
  }
  
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }
  
  .close {
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
  }
  
  #imageInfo {
    text-align: center;
    color: #fff;
    margin-top: 10px;
  }
  
  #downloadBtn {
    display: inline-block;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
  }
  
  #downloadBtn:hover {
    background-color: #45a049;
  }