/* Slide Show*/

/* Full-screen background */
  .modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
  }

  /* Container for images */
  .modal-content {
    position: relative;
    margin: auto;
    top: 10%;
    width: 80%;
    max-width: 700px;
  }

  /* Close button */
  .close {
    position: absolute;
    top: 20px; right: 35px;
    color: white;
    font-size: 60px;
    cursor: pointer;
  }

  /* Next & prev buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    padding: 16px;
    color: white;
    font-weight: normal;
    font-size: 30px;
    user-select: none;
    background-color: rgba(0,0,0,0.3); /* Added for visibility */
    text-decoration: none;
  }
  .next { right: 0; }
  .prev { left: 0; }









