    .popup-overlay {
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        
    } 
    .popup-container {
        position: relative;
        width: auto;
        height: auto;
        max-width: 90%;
        max-height: 90%;
        background-color: #fff;
        border-radius: 0px;
        padding: 0;
        margin: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        overflow: auto; /* Hides the content that exceeds the container's dimensions */
        display: inline;
        align-items: center;
        justify-content: center;
    }
    .popup-container img {
        max-width: 100%;
        max-height: 100%;
        display: block;  /* Fixed the horizontal white line under Images*/
        border: 0; /* Add this line to remove the border */
        /* align-items: center; */
        /* display: block; 
        margin: auto;  */
        /* cursor: zoom-in; */
    }


    .popup-container::-webkit-scrollbar {
        width: 0.5em;
        background-color: #F5F5F5;
    }

    .popup-container::-webkit-scrollbar-thumb {
        background-color: #000000;
    }

    .popup-container::-webkit-scrollbar-track {
        background-color: #F5F5F5;
    }

    .popup-container::-webkit-scrollbar-thumb:hover {
        background-color: #555555;
    }

    .popup-container::-webkit-scrollbar-thumb:active {
        background-color: #000000;
    }

    .popup-container::-webkit-scrollbar-corner {
        background-color: #F5F5F5;
    }
    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
    } 
