/* Header */
.header {
    background-color: #003087;
    color: white;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Photo Grid */
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .photo-grid img {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
  }
  
  .photo-grid img:hover {
    transform: scale(1.05);
  }
  
  /* Modal Overlay */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Modal Content Wrapper */
  .modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
  }
  
  /* Modal Image */
  .modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Modal Buttons (Close, Prev, Next) */
  .close,
  .prev,
  .next {
    position: absolute;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    user-select: none;
    transition: background-color 0.3s;
  }
  
  /* Specific Button Positioning */
  .close {
    top: 20px;
    right: 20px;
    transform: none;
  }
  
  .prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
  
  .next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  
  /* Hover Effect for Buttons */
  .close:hover,
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  