
  .image-container {
    position: relative;
    display: inline-block;
  }
  .marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    border: 3px solid #02a2ff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    opacity: 0.6;
    z-index: 1;
  }
  .marker:hover {
    background-color: rgb(15, 93, 182);
    opacity: 1;
  }
  .popup {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    width: 200px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    transition: 0.2s;
    z-index: 2;
  }
  .popup img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .popup h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
  }
  .popup p {
    font-size: 14px;
    color: #666;
  }
  .marker:hover .popup {
    display: block;
    opacity: 1;
  }


  .main-container {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    background: currentColor;
  }

  .detail-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    background: transparent;
    color: white;
    max-width: 29rem;
  }


  /* Youtube lightbox */
  .watch-video-btn {
    padding: 6px 21px;
    background: linear-gradient(45deg, #ff6a00, #ff3e00);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
  }

  .watch-video-btn:hover {
    background: linear-gradient(45deg, #ff3e00, #ff6a00);
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .watch-video-btn:focus {
    outline: none;
  }

  .watch-video-btn:active {
    transform: scale(1); /* Reset zoom on click */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  /* Lightbox Content */
  .lightbox-content {
    position: relative;
    max-width: 90%; /* Ensure it fits in smaller screens */
    max-height: 90%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    width: 83%;
    height: 82vh;
  }

  .lightbox iframe {
    width: 100%;
    height: 100%;
    /* max-width: 800px; */ /* Max width of the video */
    /* max-height: 450px; */ /* Max height of the video */
    border: none;
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
  }

  .close-btn:hover {
    color: #ff0000;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .lightbox-content {
      padding: 10px;
    }

    .lightbox iframe {
      max-width: 100%;
      max-height: 400px; /* Smaller height on mobile devices */
    }
  }

  @media (max-width: 480px) {
    .lightbox iframe {
      max-height: 300px; /* Even smaller height on very small devices */
    }
  }