.header-container {
  height: 80px;
  width: 100%;
}

.header-navigation {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

#header-nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly; /* 👈 evenly distribute */
  align-items: center;
  width: 100%; /* 👈 important */
  margin: 0;
  padding: 0;
}

#header-nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.content-container-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  max-width: 1200px;
}

.table-container{
    max-width: 1200px !important;
    margin: 40px auto !important;
}

#schedule-table a{
  color: blue;
  text-decoration: underline;
  margin: 0 15px;
  font-weight: 400;
}

.info{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
}

.mobilemenu-new {
  display: none;
}

/* 👇 Mobile view */
@media (max-width: 991px) {
  .header-navigation {
    display: none; /* hide desktop menu */
  }

  .mobilemenu-new {
    display: flex;
    justify-content: flex-end; /* 👈 align right */
    align-items: center;
    height: 100%;
    padding-right: 20px;
    width: 100%;
  }
}

#main-container p{
    font-size: 18px;
}
