.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    padding: .7rem 1rem;
    background: var(--card-bg);
    border: 3px solid var(--accent-purple-dark);
    border-radius: var(--radius-lg);
    color: var(--text-main);
    box-shadow: 0 6px 0 rgba(0,0,0,0.15);
}

.toast.show {
    animation: fade .2s ease-out;
}

@keyframes fade {
    from { opacity:0; transform: translateY(6px); }
    to { opacity:1; transform: none; }
}
