/* Full-page loader styling */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  z-index: 9999; /* Ensure it is on top of other elements */
  transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
}

/* Style the loader spinner */
.loader-spinner {
  width: 2.5rem; /* Smaller spinner size */
  height: 2.5rem; /* Smaller spinner size */
}

/* Initially hide the app content */
#app-content {
  display: none;
}
