* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #000;
  background: #030000;
  font-family: Arial, sans-serif;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding: 0.5rem 1rem;
  background: #030000;
}

.logo-slot {
  width: 66px;
  height: 61.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #fff;
  overflow: hidden;
  padding: 0;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  background: #d9d9d9;
}

main {
  padding: 1.25rem;
}

.renderer-main {
  min-height: calc(100vh - 73px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: white;
}

.renderer-title {
  margin: 0;
  text-align: center;
  position: relative;
  top: -12px;
}

.page-title {
  margin-top: 0;
}

#status {
  min-height: 1.25rem;
  text-align: center;
}
p {
    color: white;
    text-align: center;
}