#wsp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /*display: flex; /* Flexbox layout */
    display: none;
    align-items: center; /* Vertically align image and content */
    padding: 15px;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    display: none;
    z-index: 1000;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Deeper shadow */
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 300px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

#wsp-popup img {
    width: 50px;
    height: 50px;
    border-radius: 4px; /* Slightly rounded image corners */
    object-fit: cover;  /* Ensure the image fits well */
    margin-right: 15px; /* Space between image and text */
}

#wsp-popup .content {
    flex: 1; /* Allow the content to take the remaining space */
}

#wsp-popup .close {
    cursor: pointer;
    font-size: 18px;
    color: #999;
    margin-left: 10px; /* Space between content and close button */
}

#wsp-popup .close:hover {
    color: #333; /* Darker hover effect for the close button */
}
