.loaderOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  /* Smooth fade-in/out */
}

.loaderOverlay.visible {
  opacity: 1;
}

.simpleLoaderContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 0 20px 0 rgba(109, 160, 203, 0.15);
}

.simpleSpinner {
  width: 48px;
  height: 48px;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #ff0000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 18px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loaderMessage {
  display: none;
  text-align: center;
  color: #414040;
  font-size: 1.1rem;
  margin-top: 0;
}/*# sourceMappingURL=loaderTruck.css.map */