#globalToast{
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-20px);
    transition: all .25s ease;
    z-index: 999999;
}

#globalToast.show{
    opacity: 1;
    transform: translateY(0);
}

/* Modeller */
.toast-info    { background: #3498db; }
.toast-warning { background: #f39c12; }
.toast-error   { background: #e74c3c; }
.toast-success { background: #2ecc71; }

