#popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow: auto;
}

#popup-content {
    background-color: #fff;
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

#popup-close {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #fff;
    background-color: #333;
    padding: 5px 10px;
    text-decoration: none;
}

#popup-close:hover {
    background-color: #555;
}

.dpl-popup {
    cursor: pointer;
}