/* Import body_settings */
@import "../general_settings/body_settings.css";

nav {
  overflow: hidden;
  border: 2px solid var(--color-primary);
  margin-left: 5px;
  margin-right: 5px;
}
  
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
  
nav ul li {
  float: left;
}
  
nav ul li a {
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
  
nav ul li a:hover {
  background-color: var(--color-background);
}
  
.sponsor {
  float: right;
}
  
.nav-right {
  float: left;
}
  
.nav-left li {
  float: right;
}

#sponsor-button {
  margin: 7px 6px 0px 0px;
  border-radius: 0px;
}

.color-fg-sponsors, .fgColor-sponsors {
  color: #636c76 !important;
}

/* Media Query for Responsive Design */
@media screen and (max-width: 600px) {
  nav ul li a {
    display: block;
    text-align: center;
    padding: 14px 6px;
    text-decoration: none;
  }
}