.vpp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 168px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    display: none; /* Initially hidden */
    z-index: 9999;
}

.vpp-popup-content {
    position: relative;
    height: 100%;
}

/* Close button */
.vpp-popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    padding: 2px 5px;
    border: 2px solid #fff;
}

.vpp-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

