.toast {
  transition: 0.3s ease all;
  opacity: 0;
  transform: translateY(20px);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hide {
  opacity: 0;
  transform: translateY(20px);
}

.toast-header {
  font-weight: bold;
}