/* Toast container */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Toast base */
.toast {
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: .25s ease;
  min-width:260px;
  max-width:380px;
}
.toast.show { opacity:1; transform:translateY(0); }

/* types */
.toast-success{background:#f0fff4;border-left:4px solid #38a169}
.toast-error{background:#fff5f5;border-left:4px solid #e53e3e}
.toast-info{background:#ebf8ff;border-left:4px solid #3182ce}

.toast-icon{margin-right:8px;font-size:16px;}
