.initial-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
}

.css-loader {
  width: 70px;
  height: 70px;
  border: 7px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--lms-main-light-color, #4CAF50);
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

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

.loader-text {
  margin-top: 12px;
  font-size: 16px;
  color: var(--lms-main-light-color, #4CAF50);
}
