/* CSS */
.app-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white; /* Optional: Background color while loading */
  z-index: 9999;
}

.app-loading::after {
  content: '';
  width: 50px; /* Spinner size */
  height: 50px;
  background-image: url('/content/images/spinner.gif');
  background-size: cover;
  background-repeat: no-repeat;
}
