   /* Social proof */
   .custom-social-proof {
    position: fixed;
    bottom: -150px;
    left: 20px;
    z-index: 9999999999999 !important;
    font-family: 'Open Sans', sans-serif;
    transition: bottom 0.5s ease;
    display: none;
}

.show_proof {
    bottom: 20px;
    /* End position */
    display: block;
    transition: bottom 0.5s ease;

    /* Show when the notification is active */
}

.custom-notification {
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-align: left;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
    position: relative;
    cursor: pointer;
}

.custom-notification img {
    width: 80px;
    margin-right: 20px;
    float: left;
}



.custom-notification-content p {
    margin: 4px 0;
    color: #333;
    font-size: 14px;
}

#notify-ago {
    color: gray;
}

.custom-close {
    position: absolute;
    top: 2px;
    right: 15px;
    height: 12px;
    width: 12px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    color: gray;
    visibility: visible;
    /* Always visible */
    transition: color 0.2s;
}

.custom-close:hover {
    color: black;
    /* Change color on hover */
}

/* Responsive Styles */
@media (max-width: 600px) {

    .custom-social-proof{
        display: none !important;
    }
 

    .custom-notification img {
        margin: 5px 10px 5px 5px;
        /* Adjust margin for stacked layout */
    }

    .custom-notification-content {
        text-align: left;
        /* Left-align text on small screens */
    }
    .custom-notification{
        width: 95%;
    }
    .custom-notification-content p {
        margin: 2px 0;
        color: #333;
        font-size: 13px;
    }
}