.loading-root {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #1a3a52;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.loading-text {
  color: #1a3a52;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

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