/**
 * ==========================================================
 * Kingdom Nexus - Toast Styles (v1.0)
 * ==========================================================
 */

#knxToastContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.knx-toast {
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.knx-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Colors */
.knx-toast-success { background: #0B793A; }
.knx-toast-error { background: #d9534f; }
.knx-toast-info { background: #007bff; }
.knx-toast-warning { background: #ff9800; }
