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

.toast {
  background: #111;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s;
  max-width: 320px;
}

.toast.visible {
  opacity: 1;
  transform: translateX(0);
}

.toast.toast-notice {
  border-color: #7033E840;
  background: #7033E820;
}

.toast.toast-alert {
  border-color: #e8303040;
  background: #e8303020;
}
