/* ── EBJobPoller Toast (글로벌) ──
   여러 토스트가 쌓일 수 있도록 stacking 지원 */
.eb-toast {
  position: fixed;
  right: 24px;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 340px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  bottom: 24px;
}
/* 동시에 여러 개가 떠 있을 때 자연스럽게 위로 쌓이도록 */
.eb-toast ~ .eb-toast { bottom: 116px; }
.eb-toast ~ .eb-toast ~ .eb-toast { bottom: 208px; }
.eb-toast ~ .eb-toast ~ .eb-toast ~ .eb-toast { bottom: 300px; }

.eb-toast.visible {
  opacity: 1;
  transform: translateY(0);
}
.eb-toast-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.eb-toast-body { flex: 1; }
.eb-toast-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}
.eb-toast-desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}
.eb-toast-link {
  font-size: 13px;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
  white-space: nowrap;
}
.eb-toast-link:hover { text-decoration: underline; }
