html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background-color: #f6f3f0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100dvh;
}

/* Splash screen */
#splash-screen {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
  z-index: 10000;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.splash-image {
  display: block;
  width: 250px;
  max-width: 80vw;
  height: auto;
  max-height: 40dvh;
  object-fit: contain;
  margin: 0 auto;
}

#loading-info-container {
  display: block;
  width: 100%;
  min-height: auto;
}

#loading-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

#loading-text {
  margin: 0;
}

.loading-spinner {
  display: block;
  width: 60px;
  height: 48px;
  min-width: 60px;
  min-height: 48px;
  object-fit: contain;
  visibility: hidden;
}

.loading-spinner.ready {
  visibility: visible;
}

/* Browser warning */
.browser-warning {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 10px;
  box-sizing: border-box;
  background-color: #c8e6c9;
  color: #1c7232;
  border: 1px solid #c8e6c9;
  border-radius: 5px;
  text-align: center;
  font-size: 12px;
  z-index: 10001;
}

.browser-warning__title {
  margin: 0 0 6px 0;
  font-size: 14px;
}

.browser-warning__text {
  margin: 0;
}

.version-text {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  margin: 0;
  text-align: center;
  color: gray;
  font-size: 8px;
}