#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#popup-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
}

#popup-image {
    max-width: 100%;
    max-height: 800px;
    margin-bottom: 20px;
}

#popup-text {
    font-size: 18px;
    color: #333;
}