#puppia-toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.puppia-toast {
    max-width: 90vw;
    padding: 16px 26px;
    border-radius: 6px;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    opacity: 0;
    transform: translateY(6px) scale(.98);
    transition: opacity .25s ease, transform .25s ease;
}

.puppia-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
