/* Loading spinner styles for immediate loading screen
 * 
 * This CSS is loaded synchronously by index.html to ensure the loading spinner
 * is immediately available before React hydrates. The same CSS classes are used
 * by the React LoadingSpinner component to maintain visual consistency.
 */

body {
  margin: 0;
  padding: 0;
}

.loading-spinner-container {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border-width: 3px;
  border-style: solid;
  border-color: #0263e0 #f3f3f3 #f3f3f3 #f3f3f3;
  border-radius: 50%;
  animation: loading-spinner-spin 1s linear infinite;
  margin-bottom: 16px;
  box-sizing: content-box;
}

.loading-spinner-text {
  color: #666;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-weight: normal;
  line-height: normal;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  display: block;
  box-sizing: border-box;
}

@keyframes loading-spinner-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}