/* PDF Loading Modal Styles */
.pdf-loading-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

.pdf-loading-content {
  background: white;
  border-radius: 12px;
  padding: 40px 60px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}

.pdf-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2c5530;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pdf-loading-content p {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.pdf-loading-subtitle {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #666 !important;
  margin-top: 5px !important;
}

/* Disable button styles when downloading */
.js-download-expose:disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
  pointer-events: none;
}
