body {
  background-color: #000;
  line-height: 1.5;
  font-size: 20px;
  color: #ffff;
  font-weight: 400;
  margin-right: 0;
  margin-left: 13rem;
  margin-top: calc(3rem + 3.2vw);
  margin-bottom: 0;
  font-family: Arial, sans-serif;
}

h2 {
  text-align: center;
}

.content {
  padding: 20px;
  min-height: calc(100vh - 13.4rem - 3.2vw);
  margin: 0 auto -50px;
}

.doc-text {
  text-align: center;
  white-space: pre-wrap;
  overflow-x: hidden;
  word-break: break-word;
}

.topbar {
  z-index: 2147483647;
  position: fixed;
  top: 0;
  left: 0;
  height: calc(3.2vw + 1rem);
  font-size: 2.5vw;
  text-align: center;
  width: 100%;
  color: #FF7777;
  background-color: #422;
  background-image: linear-gradient(to bottom, #422, #111);
  transform: translateZ(0);
}

.topbar-container {
  transform: translateX(5rem);
}

.topbar img {
  margin-top: 1rem;
  width: 2.5vw;
}

.topbar span {
  vertical-align: center;
}

.unsupported {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.unsup-container {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center; /* Centers the table horizontally */
  width: auto;
}

table {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
}

td {
  padding: 0 1rem;
}

.marquee {
  position: fixed;
  top: calc(3.2vw + 1rem);
  width: 100%;
  height: 2rem;
  white-space: nowrap;
  --gap: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  background: #FF0000;
  z-index: 2147483644;
}

.marquee__content {
  margin-top: 0px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  transform: translateZ(0);
  animation: scroll 15s linear infinite;
  z-index: 2147483645;
}

.page-bottom {
  font-size: calc(12px + 0.4vw);
  height: 9rem;
  background-color: #111;
  text-align: center;
  padding: 1rem 0rem;
  margin: 0;
}

pre {
  font-family: Arial, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

a:link {color: #00FFFF;}  
a:visited {color: #FFFF77;}  
a:hover {color: #AAFFFF;}  
