
#notify-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notify {
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-family: Arial, sans-serif;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.3s ease forwards;
  position: relative;
  cursor: pointer;
}

.notify.success { background: #28a745; }
.notify.error { background: #dc3545; }
.notify.warning { background: #ffc107; color:#000; }
.notify.info { background: #17a2b8; }

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
  to { opacity: 0; transform: translateX(100%); }
}