#Paidusers-toast {
    visibility: hidden;
    max-width: 80%;
    background-color: #6b9d64;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 120px;
    font-size: 17px;
    padding: 15px 25px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateX(-50%);
}

#Paidusers-toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 100px; opacity: 0;} 
    to {bottom: 120px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 100px; opacity: 0;}
    to {bottom: 120px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 120px; opacity: 1;} 
    to {bottom: 100px; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 120px; opacity: 1;}
    to {bottom: 100px; opacity: 0;}
}

/* Responsive Styles */
@media (max-width: 600px) {
    #Paidusers-toast {
        max-width: 90%;
        font-size: 14px;
        bottom: 100px;
        padding: 10px 20px;
    }
}
   