#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 10px;
  background: linear-gradient(to right, rgba(20,22,28,0.9), rgba(10,12,16,0.9));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  animation: slideIn 0.4s ease, fadeOut 0.3s ease 4s forwards;
  border-left: 4px solid #00bfff;
}

.toast.success { border-left-color: #00ff99; }
.toast.error   { border-left-color: #ff3b3b; }
.toast.info    { border-left-color: #00bfff; }

.toast i {
  font-size: 1.1rem;
  color: var(--highlight, #00bfff);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
  to   { opacity: 0; transform: translateX(50px); }
}
