#sis-toast-container {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 999999;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    pointer-events: none;
}

.sis-toast {
    min-width: 260px;
    max-width: 360px;

    padding: 14px 18px;

    border-radius: 14px;

    color: #fff;
    font-size: 14px;
    font-weight: 500;

    opacity: 0;
    transform: translateY(10px);

    transition:
        opacity .25s ease,
        transform .25s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);

    pointer-events: auto;
}

.sis-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.sis-toast-success {
    background: #16a34a;
}

.sis-toast-error {
    background: #dc2626;
}

.sis-toast-info {
    background: #2563eb;
}