.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;
  align-items: center;
  width: 100%;
  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;
}

@media (max-width: 991px) {
  .header-navigation {
    display: none;
  }

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

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

/* ========== RESPONSIVE STYLES ========== */

/* Tablet */
@media (max-width: 1024px) {
  .content-container-new {
    padding: 0 20px;
    margin: 30px auto;
  }

  .table-container {
    margin: 30px 20px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  #main-container p {
    font-size: 15px;
  }

  .content-container-new {
    padding: 0 15px;
    margin: 20px auto;
  }

  .content-container-new h2 {
    font-size: 22px;
    text-align: center;
  }

  .table-container {
    margin: 20px 10px !important;
    overflow-x: auto;
  }

  /* Make table scrollable on mobile */
  #schedule-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  #schedule-table thead,
  #schedule-table tbody,
  #schedule-table tr,
  #schedule-table th,
  #schedule-table td {
    white-space: normal;
  }

  #schedule-table th {
    font-size: 13px;
    padding: 8px 6px;
  }

  #schedule-table td {
    font-size: 13px;
    padding: 8px 6px;
  }

  #schedule-table a {
    margin: 0 5px;
    font-size: 13px;
  }

  /* Banner image */
  #main-container img {
    width: 100% !important;
    height: auto !important;
  }

  .info {
    padding: 0 15px;
    text-align: center;
    margin: 15px auto;
  }

  .info h3 {
    font-size: 18px;
  }

  .info p {
    font-size: 14px !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .content-container-new h2 {
    font-size: 18px;
  }

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

  #schedule-table th,
  #schedule-table td {
    font-size: 12px;
    padding: 6px 4px;
  }
}