/* Basic styling for the popup */
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Hide scroll bars */
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
}

/* Popup Content */
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 80%; /* Adjust as needed */
    max-width: 800px; /* Maximum width */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Hide overflow from image container */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Shadow for better visibility */
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Image container styling */
.image-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden; /* Hide horizontal scroll bars */
    scroll-behavior: smooth; /* Smooth scroll behavior */
}

.image-container img {
    height: auto;
    width: 100%;
    flex-shrink: 0; /* Prevent images from shrinking */
    margin: 10px; /* Space between images */
}

/* Optional: Add some padding and spacing for better appearance */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
