.toast {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.toast.show {
    opacity: 1;
}

.toast.hide {
    opacity: 0;
}
