#customPopupOverlay {
    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: 9999;
}

#customPopupContainer {
    position: relative;
    max-width: 1000px;
    width: 90%;
}

#customPopupContainer img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

#customPopupClose {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    color: #000;
	text-decoration: underline;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

#customPopupContainer { background: #fff; }