#popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    background-color: #f7f7f7;
    padding: 20px;
    z-index: 9999;
}

.image-container {
    text-align: center;
    margin-bottom: 10px;
}

.popup-image {
    width: 100%; /* Set width to 100% */
    height: auto; /* Maintain aspect ratio */
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    border: none;
    background: none;
    color: black;
    cursor: pointer;
}