#custom-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px; /* Set width to 300px */
    padding: 15px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    display: none;
    z-index: 9999; /* Ensure popup is on top of all layers */
}

#custom-popup #custom-popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
}
