/* toast.css  - Siafu*/
.toast-container {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
}

.toast {
  background: #222;
  color: #fff;
  padding: 10px 14px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  height: 50px; /* fixed height */
  display: flex;
  align-items: center;
}

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

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

/* Possible positions */
.toast-container.top-left    { top: 20px; left: 20px; align-items: flex-start; }
.toast-container.top-right   { top: 20px; right: 20px; align-items: flex-end; }
.toast-container.bottom-left { bottom: 20px; left: 20px; align-items: flex-start; }
.toast-container.bottom-right{ bottom: 20px; right: 20px; align-items: flex-end; }
.toast-container.center      { top: 50%; left: 50%; transform: translate(-50%, -50%); }
