/* * Defines defensive mobile web defaults before Flutter boots. */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  overscroll-behavior: none;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-user-select: none;
}

/* * Shows a CSP-compatible loading indicator while the Flutter engine boots. */
#loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #0175c2;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}

#loading .spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 14px;
}

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