﻿.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent, #333);
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
    z-index: 9999;
}

    .toast.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .toast.fade-out {
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
    }
