@charset "utf-8";
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#popup {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative; /* Added */
}

#popup img {
    max-width: 100%;
    max-height: 80vh;
}

#closeBtn {
    position: absolute;
    top: 5px; /* Adjust top position as needed */
    right: 5px; /* Adjust right position as needed */
}
