@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
      
.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  margin: 0;
  background-color: #fbfafb;
  word-wrap: break-word;
}

@media (max-width: 209px) or (max-height: 209px) { * { background-color: #ffb4b4 !important; } } /* warning of a screen being too tiny*/

.header {
  position: sticky;
  top: 0;
  padding: 16px;
  background-color: #f6f5f6;
  height: 64px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.header-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  box-sizing: border-box; font-size: 24px; display: flex; align-items: center; gap: 8px;
  justify-content: space-between;
}

.header a { text-decoration: none; }

.header-right { display: flex; align-items: center; gap: 8px; }

.header img { display: block; height: 24px; flex-shrink: 0; }

.btnI { color: #707070; transition: color 0.3s ease; }
.btnI:hover { cursor: pointer; color: #505050; }
.btnIdisabled { cursor: not-allowed; color: #aaaaaa; }

.content {
  padding: 8px;
  margin: auto;
  width: 0;
  min-width: min(100%, 1180px);
  box-sizing: border-box;
  color: #202020;
}

.content a { color: #202020; }

.hero {
  height: 512px;
  color: white;
  background-image: url('/img/rr-d2.png');
  background-position: center;
  background-size: cover;
}

h2 {
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 8px;
  margin-top: 16px;
}

h3 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 8px;
  margin-top: 16px;
}

p {
  margin-top: 8px;
  margin-bottom: 8px;
}

.card {
  width: 99%;
  height: fit-content;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 16px;
}

.card img {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  display: block;
}

.card-content {
  padding: 8px;
  box-sizing: border-box;
}

.red-banner {
  background-color: #f9a7a7;
  color: #540808;
  padding: 8px;
  border-left: 4px solid #ff000045;
  margin-top: 4px;
  margin-bottom: 4px;
}

.green-banner {
  background-color: #a7f9a7;
  color: #085408;
  padding: 8px;
  border-left: 4px solid #00ff0045;
  margin-top: 4px;
  margin-bottom: 4px;
}

.blue-banner {
  background-color: #a7a7f9;
  color: #080854;
  padding: 8px;
  border-left: 4px solid #0000ff45;
  margin-top: 4px;
  margin-bottom: 4px;
}

.yellow-banner {
  background-color: #f9f9a7;
  color: #545408;
  padding: 8px;
  border-left: 4px solid #ffff0045;
  margin-top: 4px;
  margin-bottom: 4px;
}

input[type=text], input[type=password], input[type=number] {
  margin-top: 4px;
  margin-bottom: 4px;
  width: 200px;
  height: 28px;
  box-sizing: border-box;
  background-color: #ffffff00;
  border: none;
  transition: border-bottom 0.2s ease;
  border-bottom: 2px solid #0000005a;
}

input[type=text]:focus, input[type=password]:focus, input[type=number]:focus {
  outline: none;
  border-bottom: 2px solid #9500ff;
}

button {
  border-radius: 3px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  transition: background-color 0.2s ease;
  background-color: #9500ff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  color: white;
  border: none;
  outline: none;
}

.small-block {
  display: block;
  margin-bottom: 6px;
}

.end-block {
  display: block;
  margin-bottom: 18px;
}

.start-block {
  display: block;
  margin-top: 18px;
}

button:disabled {
  background-color: #696869;
}

button:disabled:hover {
  cursor: not-allowed;
}

button:not(:disabled):hover {
  cursor: pointer;
  background-color: #8903e9;
}

button:not(:disabled):active {
  background-color: #7d09cf;
}

.btnL {
  height: 28px;
  box-sizing: border-box;
  padding: 0;
  padding-left: 16px;
  padding-right: 16px;
}

td, th {
  border: 1px solid #202020;
  margin: 0;
  padding: 4px;
}

table, tr {
  border-collapse: collapse;
}

.devices {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  align-items: top;
  justify-content: center;
}

.devices a {
  text-decoration: none;
}

.device {
  border: #a8a8a8 1px solid;
  width: 160px;
  padding: 4px;
  margin: 4px;
}

.device img {
  width: 160px;
  height: 160px;
}

#grade {
  image-rendering: pixelated;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-bottom: 3px;
}