/* UI 自动化：全站运行互斥提示弹窗 */
.uia-run-busy-notice {
  position: fixed;
  inset: 0;
  z-index: 10065;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.uia-run-busy-notice.is-open {
  opacity: 1;
  pointer-events: auto;
}
.uia-run-busy-notice.is-hidden {
  display: none;
}
.uia-run-busy-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.uia-run-busy-notice__panel {
  position: relative;
  z-index: 1;
  width: min(26rem, 92vw);
  border-radius: 1.125rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.16), 0 10px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.uia-run-busy-notice.is-open .uia-run-busy-notice__panel {
  transform: translateY(0) scale(1);
}
.uia-run-busy-notice__accent {
  height: 3px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 52%, #a78bfa 100%);
}
.uia-run-busy-notice__body {
  padding: 1.375rem 1.5rem 0.25rem;
}
.uia-run-busy-notice__title {
  margin: 0 0 0.625rem;
  font-size: 1.0625rem;
  font-weight: 650;
  color: #0f172a;
  letter-spacing: -0.015em;
}
.uia-run-busy-notice__message {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  white-space: pre-line;
}
.uia-run-busy-notice__actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 1.5rem 1.375rem;
}
.uia-run-busy-notice__btn {
  min-width: 5.5rem;
  padding: 0.5rem 1.125rem;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.25), 0 4px 12px rgba(99, 102, 241, 0.28);
}
.uia-run-busy-notice__btn:hover {
  transform: translateY(-1px);
}
body.uia-run-busy-notice-open {
  overflow: hidden;
}
