/* Minimal Loader CSS - Loads separately for fast display */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  margin: 0;
  padding: 0;
  transition: opacity 0.3s ease;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: #1a4d7a;
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
  box-sizing: border-box;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}
