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

/* Pre-mount loader styles */
#pre-mount-loader-container {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  z-index: 99999;
}

.pre-mount-spinner {
  width: 50px;
  height: 50px;
  animation: pre-mount-spin 1s linear infinite;
}

.pre-mount-loader-text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
}


