.chr-toast-container {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
}
.chr-toast {
    min-width: 220px;
    max-width: 340px;
    margin: 10px;
    padding: 18px 22px;
    border-radius: 10px;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.08em;
    box-shadow: 0 6px 30px #2222;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: all .28s cubic-bezier(.42,0,.58,1.0);
    background: #444;
    pointer-events: auto;
}
.chr-toast.chr-success { background: linear-gradient(90deg, #00c878, #44c767); }
.chr-toast.chr-info    { background: linear-gradient(90deg, #3f51b5, #2196f3); }
.chr-toast.chr-warning { background: linear-gradient(90deg, #ff9800, #f9d423); color:#333;}
.chr-toast.chr-error   { background: linear-gradient(90deg, #f44336, #d32f2f); }
.chr-toast i {
    margin-right: 12px;
    font-size: 1.35em;
}
.chr-toast.chr-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
