.toast-custom {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast-custom.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-custom.error {
  background: #e74c3c;
}

.toast-custom.success {
  background: #2ecc71;
}

.toast-custom.warning {
  background: #f39c12;
}