



body {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}



img {
    pointer-events: none;
}




#cp-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 99999;
}

#cp-toast.show {
    opacity: 1;
}
