* {
  box-sizing: border-box;
}

html {
  background: white;
}

body {
  font-family: Lucida Grande, Lucida Sans Unicode, Helvetica Neue, Kalimati, Calibri, Helvetica, Arial, sans-serif;
  font-size: 110%;
  margin: 0;
  padding: 0;
}
body .navigating nav {
  transition: none !important;
}
body {
  -webkit-tap-highlight-color: transparent;
}

body.default {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr;
}
body.default .primary-body {
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
}

nav {
  z-index: 10;
  padding-top: 15px;
  overflow-x: hidden;
  background-color: #e2e2e2;
  width: fit-content;
  min-width: 150px;
  max-width: 300px;
}

.entry a {
  padding: 8px 8px 8px 20px;
  font-size: 120%;
  text-decoration: none;
  display: block;
  color: #2070b0;
  transition: background-color 0.1s ease;
}
.entry a.active {
  border-left: 4px solid rgb(93.0372670807, 158.8757763975, 204.9627329193);
}
.entry a:hover {
  background-color: #84b6d9;
}

.nav-divider {
  margin-left: 20px; /* Aligns with the text padding */
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100px;
  height: 2px;
  background-color: #84b6d9;
}

.faculty-home {
  margin-top: auto;
}
.faculty-home a {
  font-size: 80%;
}
.faculty-home a:hover {
  background-color: rgb(112.5186335404, 170.4378881988, 210.9813664596);
}

.page-header {
  height: 50px;
  background-color: #84b6d9;
  font-size: 120%;
  font-weight: bold;
  line-height: 50px;
  padding-left: 20px;
}
.page-header a {
  padding: 0;
  color: black;
  text-decoration: none;
}
.page-header a:visited {
  color: black;
}

.burger-outer {
  float: left;
  width: 30px;
  height: 100%;
  position: relative;
}

.burger-button {
  background-color: #84b6d9;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.1s ease;
}
.burger-button:active {
  opacity: 0.5;
}
.burger-button:focus {
  outline: none;
}

#burger-svg {
  display: block;
  margin: auto;
  margin-left: 0;
  height: 100%;
}

.profile-container {
  margin-top: 30px;
}
.profile-container .mobile-only {
  display: none;
}
.profile-container .layout-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.profile-container .layout-container .image-container img {
  height: 150px;
  width: auto;
  max-height: 150px;
  border-radius: 10px;
  object-fit: cover;
}
.profile-container .layout-container .text-content {
  flex: 1;
  min-width: 0;
}
.profile-container .layout-container .text-content .title-text {
  margin-top: 0;
}
.profile-container .layout-container .text-content .contact-info p {
  margin-top: 0;
}
.profile-container .tiny-break {
  display: none;
}

/* For screens narrower than 400px */
@media (max-width: 390px) {
  .profile-container {
    margin-top: 20px;
  }
  .profile-container .mobile-only {
    display: block;
    margin-bottom: 15px;
  }
  .profile-container .desktop {
    display: none;
  }
  .profile-container .title-text {
    line-height: 1.4em;
  }
  .profile-container .layout-container {
    gap: 20px;
  }
  .profile-container .layout-container .image-container img {
    max-width: 100px;
  }
  .profile-container .tiny-break {
    display: inline;
  }
}
.page-content {
  padding-top: 1px;
}
.page-content a {
  color: #2070b0;
  text-decoration: none;
  transition: 0.2s ease;
}
.page-content a:hover {
  text-decoration: underline;
}
.page-content li {
  margin-bottom: 0.4em;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  nav.showing {
    opacity: 1;
    pointer-events: auto;
  }
  .page-margins {
    display: block;
    min-width: 0;
  }
  .page-content {
    padding-left: 20px;
    padding-right: 20px;
    grid-column: 1/-1;
  }
  .page-header {
    padding-right: 5px;
  }
  .page-header-title {
    padding-left: 40px;
    width: 100%;
  }
  .hide-small {
    display: none !important;
  }
}
@media (min-width: 768px) {
  nav {
    grid-column: 1;
  }
  .page-margins {
    display: grid;
    grid-template-columns: minmax(50px, 1fr) minmax(auto, 800px) minmax(50px, 2fr);
  }
  .page-content {
    grid-column: 2;
  }
  .page-header {
    padding-right: 20px;
  }
  .page-header-title {
    padding-left: 5px;
    width: 100%;
  }
  .hide-large {
    display: none !important;
  }
}
.course-header {
  margin-top: 30px;
}
.course-header .left-content {
  float: left;
  margin: 0 20px 20px 0;
}
.course-header h2 {
  margin: 0 0 20px 0;
}
.course-header p {
  line-height: 1.4em;
  margin: 0;
}
.course-header::after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 768px) {
  .course-header {
    display: flex;
    gap: 5px;
  }
  .course-header .left-content {
    float: none;
    flex-shrink: 0;
  }
}

pre code {
  background-color: #eee;
  border: 2px solid #999;
  display: block;
  padding: 20px;
  overflow-x: scroll;
}

img.boxed {
  border: 2px solid black;
  overflow-x: scroll;
  vertical-align: bottom;
  display: inline-block;
  margin-top: 6px;
  margin-right: 6px;
}

.card {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  padding-right: 20px;
  padding-left: 20px;
  border: 3px solid #84b6d9;
}

.asst-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid black;
  border-radius: 4px;
}
.asst-table th, .asst-table td {
  text-align: left;
  padding: 10px;
}
.asst-table th {
  vertical-align: bottom;
}
.asst-table td {
  vertical-align: top;
}
.asst-table td.first-col {
  width: 130px;
}
.asst-table tr:nth-child(odd) {
  background-color: #e2e2e2;
}
.asst-table p {
  line-height: 1.5em;
  margin-top: 5px;
  margin-bottom: 5px;
}

div.x-scroll {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  white-space: nowrap;
}

.accordion {
  padding: 4px 8px 4px 20px;
  font-size: 120%;
  text-decoration: none;
  display: block;
  color: #2070b0;
  cursor: pointer;
  transition: 0.3s;
}
.accordion:hover {
  background-color: #84b6d9;
}

.accordion-panel {
  padding: 0 18px;
  background-color: #e2e2e2;
  display: none;
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */