:root{
  --eb-toast-z: 2190;
}

.eb-toast-wrap{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: var(--eb-toast-z);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.eb-toast{
  pointer-events: auto;
  min-width: 220px;
  max-width: 380px;
  background: rgba(20,20,20,.92);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.3;
}

.eb-toast.success{ background: rgba(25,135,84,.95); }
.eb-toast.error{ background: rgba(220,53,69,.95); }
.eb-toast.info{ background: rgba(13,110,253,.95); }
.eb-toast.warn{ background: rgba(255,193,7,.95); color:#111; }

.eb-toast__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.eb-toast__title{ font-weight: 600; }

.eb-toast__close{
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  opacity: .9;
}

.eb-toast__close:hover{ opacity: 1; }
