#wdl-irbt-toast {
  position: fixed;
  left: var(--wdl-irbt-left, 16px);
  bottom: 16px;
  width: var(--wdl-irbt-width, calc(100% - 32px));
  z-index: 999999;
  display: none;
  pointer-events: none;
}

#wdl-irbt-toast.wdl-irbt-show { display: block; }

#wdl-irbt-toast-inner {
  width: 100%;
  margin: 0;
  background: #ffffff;
  border: 2px solid #22405A;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  pointer-events: auto;
}

#wdl-irbt-toast-message {
  flex: 1;
  color: #22405A;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

#wdl-irbt-toast-close {
  appearance: none;
  border: 1px solid rgba(34,64,90,0.35);
  background: #F5F7FA;
  color: #22405A;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

#wdl-irbt-toast-close:hover { filter: brightness(0.98); }
