html {
  height: 100%;
  background-color: #03005C;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-loading h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.status {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.status-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #FFFFFF;
  transition: background-color 0.3s;
  border: 2px solid #FFFFFF;
}

.connected {
  background-color: #00C34F;
}

.disconnected {
  background-color: #DE2947;
}

.status-text {
  font-size: 1.25rem;
}
