.busy-overlay[hidden] {
  display: none;
}

.busy-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(244, 246, 245, 0.56);
  backdrop-filter: blur(1px);
}

.busy-dialog {
  box-sizing: border-box;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  width: min(520px, calc(100vw - 48px));
  border: 1px solid #d8dde6;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(31, 41, 51, 0.16);
}

.busy-dialog .spinner {
  width: 44px;
  height: 44px;
  border-width: 4px;
}

.busy-dialog p:last-child {
  margin-bottom: 0;
  color: #475467;
}

.busy-dialog .refresh-title {
  font-size: 1.05rem;
}

body.is-busy {
  cursor: wait;
}

body.is-busy .page {
  filter: blur(3px);
  opacity: 0.68;
  pointer-events: none;
  user-select: none;
}
