#custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#custom-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#custom-popup-content {
    position: relative;
    padding: 20px;
}

#custom-popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1;
}

#custom-popup-close:hover {
    color: #000;
}

#custom-popup-html {
    overflow: auto;
} 