body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.popup-container {
    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: 9998;
    overflow: hidden;
}

.popup-content {
    background-color: transparent;
    text-align: center;
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: black;
    z-index: 9999; /* Highest z-index for close button */
    display: block; /* Ensure the close button is always visible */
}
.image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-image {
    max-width: 100%;
    max-height: 100%; /* Add this line to limit the image's height */
    height: auto;
    width: auto;
    border: 1px solid white;
    
}
@media (max-width: 768px) {
    .close-button {
        font-size: 20px;
        top: 5px;
        right: 5px;
    }
     .popup-image {
        width: 100%; /* Ensure the image fits horizontally on mobile devices */
       max-height: 300px; /* Adjust the maximum height as needed */
    }
}


