﻿html,
body {
  margin: 0;
  padding: 0;
  -ms-user-select: none;
}

#loading, #notFound {
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#00307c, #2675b4);
  z-index: 99999;
}

#loading h4, #notFoundMessage {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#reactRoot {
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(#00448e,#4d81b6);
  overflow: hidden;
}

#reactRootError {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 16px;
  color: #c6c1c1;
  background-color: #d00000;
  font: 16px Arial, Helvetica, sans-serif;
  text-align: center;
  border-radius: 8px;
  min-width: fit-content;
}

  #reactRootError button {
    color: #000000;
    background-color: #dddddd;
    border-radius: 4px;
    border: none;
    padding: 8px 32px;
    margin-top: 16px;
    font-size: 16px;
    cursor: pointer;
  }
