
.image-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  
  .zoomable {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .zoomable:hover {
    transform: scale(1.1);
  }
  
  .zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
  }
  
  .modal-content {
    max-width: 80%;
    max-height: 80%;
  }
  
  .close {
    position: absolute;
    top: 90px;
    right: 50px;
    font-size: 50px;
    color: white;
    cursor: pointer;
  }
  
  