#jpreOverlay {
  background-color: rgba(0, 0, 0, 0.7); /* Transparent black background */
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#jpreLoader {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #ddd; /* Thin border */
  border-top: 5px solid yellow; /* Yellow color for the top part of the circle */
  animation: spin 2s linear infinite; /* Infinite spinning animation */
}

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