html,
body {
  height: 100%;
}

body {
  background-color: #181a20;
  color: #e5e7ef;
  font-family: sans-serif;
  margin: 0;
  max-width: 75em;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body,
p,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 2;
}

.banner {
  background: #23255a;
  color: #ffe066;
  text-align: center;
  padding: 1rem;
}

.top-nav {
  background: #23263a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Add this line to vertically center children */
  padding: 0.5rem 1rem;
}

.top-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.top-nav a {
  color: #ffe066;
  text-decoration: none;
  font-weight: bold;
  padding: 0.25em 0.75em;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.top-nav a:hover,
.top-nav a:focus {
  background: #ffe066;
  color: #23255a;
}

.main.container {
  min-height: 0;
}

main.container {
  flex: 1 1 0%;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1em;
}

.left-column {
  flex: 3;
  padding-right: 1rem;
  margin-left: 2rem;
}

.right-sidebar {
  flex: 1;
  padding-left: 1rem;
  margin-top: 2.5rem;
}

.right-sidebar .box {
  background: #23263a;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #35384a;
  border-radius: 6px;
  color: #e5e7ef;
}

footer {
  background: #0c0d0f;
  color: #bfc4d1;
  text-align: center;
  padding: 1em;
  flex-shrink: 0;
  box-sizing: border-box;
}

a {
  color: #7ea2ff;
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover,
a:focus {
  color: #ffe066;
}

.vx-software-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1em;
  font-size: 0.98em;
  line-height: 1.7;
  margin: 1.5em 0;
  padding: 0;
}

.vx-software-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 24px;
  border: none;
  border-radius: 0;
  margin: 0;
  color: #7ea2ff;
  text-decoration: underline;
  font-weight: normal;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  padding: 0.5em 0.75em;
  text-align: left;
}

.vx-software-list a:hover,
.vx-software-list a:focus {
  color: #ffe066;
  background: #23255a;
}

/* .logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.25em 0.75em;
  border-radius: 3px;
  font-weight: bold;
  color: #ffe066;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.logo:hover,
.logo:focus {
  background: #ffe066;
  color: #23255a;
} */