@charset "UTF-8";

.toast {
  position: fixed !important;
  top: 80px !important;
  right: 20px !important;
  z-index: 99999 !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  min-width: 220px !important;
  max-width: 450px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  transform: translateX(0) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  background-color: #3b82f6 !important;
  border-left: 4px solid #2563eb !important;
}

.toast i {
  font-size: 18px !important;
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
}

.toast span {
  flex: 1 !important;
  display: block !important;
}

.toast-success {
  background-color: #22c55e !important;
  border-left-color: #16a34a !important;
}

.toast-error {
  background-color: #ef4444 !important;
  border-left-color: #dc2626 !important;
}

.toast-warning {
  background-color: #eab308 !important;
  border-left-color: #ca8a04 !important;
}

.toast-info {
  background-color: #3b82f6 !important;
  border-left-color: #2563eb !important;
}

.toast.fade-out {
  opacity: 0 !important;
  transform: translateX(120%) !important;
}