
/* Navigation Bar with orange separator */
nav
nav
nav
nav
nav

.navbar a {
  text-decoration: none;
  padding: 0.5em 1em;
  color: #333;
  display: block;
  width: 100%;
}

.navbar a:hover {
  background-color: #ddd;
}



.navbar {
  width: 100%;
  background-color: #0078D7;
  padding: 0.5em 0;
}

.navbar .nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bold;
  color: white;
}

.navbar .nav-container a {
  text-decoration: none;
  color: white;
  padding: 0.5em 1em;
  position: relative;
}

.navbar .nav-container a:not(:last-child)::after {
  content: "|";
  color: black;
  position: absolute;
  right: -10px;
}

.navbar .nav-container a:first-child::before {
  content: "|";
  color: black;
  margin: 0 10px;
}