/* Initial loading screen - before React loads */
#global-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#global-loading.hidden {
  display: none;
}

.initial-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: initial-spin 0.8s linear infinite;
}

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