#navbar-container {
  position: sticky;
  top: 0;
  height: 50px;
  margin-bottom: 15px;
}

nav {
  background-color: var(--background);
  margin-bottom: 15px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
}

nav ul li {
  width: 100%;
  text-align: center;
  border-radius: 5px;
}

nav ul li select {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
  color: var(--text-main);
  text-align: center;
  border-radius: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border: 0px;
  outline: 0px;
}

nav ul li a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  color: var(--text-main);
  text-align: center;
}

nav ul li a:hover,
nav ul li select:hover {
  background-color: var(--selection);
  text-decoration: none;
}

nav ul li a.selected {
  background-color: var(--focus);
  color: var(--text-bright);
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 600px) {
  nav ul li {
    width: 100%;
    text-align: center;
  }
}
