.loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.loader.active {
  opacity: 1;
  pointer-events: all;
}

#loader-text {
  margin-top: 12px;
  font-size: 16px;
  color: #333;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#loader-text.active {
  opacity: 1;
  transform: scale(1);
}
