.snackbar-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #323232;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.snackbar-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification-content {
  font-size: 14px;
  font-weight: 500;
}