.custom-image-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;
}

.custom-image-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: white;
    padding: 6px;
    border-radius: 5px;
    text-align: center;
}

.custom-image-popup-container img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.custom-image-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
}

.custom-image-popup-close:hover {
    background-color: #000;
}