.toast {
    border-radius: var(--border-radius-lg);
    min-width: fit-content;
    max-width: var(--breakpoint-md);
    padding: var(--spacing-sm);
    color: var(--sys-color-text-primary);
    font-weight: 600;
    opacity: 0;
    pointer-events: auto;
    background: var(--sys-color-background-surface);
    animation: fade-in-out 4s forwards;
    animation-play-state: running;
}

.toast:hover {
    animation-play-state: paused;
    opacity: 1;
}

/* Optional: style for multiple toasts */
.toast+.toast {
    margin-top: 0.5rem;
}

.toast-container {
    position: fixed;
    top: var(--spacing-4xl); /* Increased from 1.5rem to 4rem to move toast down */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}