/* ── Loading overlay ── */

.pdf-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pdf-overlay__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pdf-overlay__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #fb41e7;
  border-radius: 50%;
  animation: pdfSpin 0.8s linear infinite;
}

@keyframes pdfSpin {
  to {
    transform: rotate(360deg);
  }
}

.pdf-overlay__text {
  font-family: 'PP Monument Extended', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 0;
}

/* ══════════════════════════════════════
   WINDOW PROJECT — Print / Save as PDF
   ══════════════════════════════════════ */

