html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #0b0b0c;
  color: #e4e4e7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  display: block;
  position: relative;
}

#application-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#launcher-status {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 8px;
}

#launcher-status[data-state="error"] {
  color: #fca5a5;
}

#launcher-status h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

#launcher-status p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
  max-width: 360px;
}

