#notify-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notify {
  min-width: 320px;
  max-width: 500px;
  padding: 14px 18px;
  border-radius: 4px;
  color: #fff;
  font-family: Segoe UI, Arial, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  animation: slideDown .4s ease, fadeOut .4s ease forwards;
}

.notify.success { background: #107c10; }
.notify.error   { background: #a80000; }
.notify.warning { background: #fce100; color: #000; }
.notify.info    { background: #005a9e; }

.notify button {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  margin-left: 12px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateY(-20px); }
}