/* GLOBAL VARIABLES */
:root {
  --dark-color: #222222;
  --light-color: #fcfcfc;
}

/* STYLES */
body {
  background-color: var(--light-color);
  color: var(--dark-color);
  padding-left: 4.5em;
  padding-right: 4.5em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7em;
  max-width: 50em;
}

p, li {
  line-height: 1.6em;
}

table {
  text-align: center;
}

thead {
  color: white;
  background-color: var(--dark-color);
}

td {
  padding: .5rem;
  border: 1px solid var(--dark-color);
}

.display-none {
    display: none;
}

.gray {
  color: #dadada;
  border-color: #dadada;
}

.black {
  color: var(--dark-color);
}

.select:hover {
  cursor: pointer;
}

.where:hover {
  cursor: pointer;
}

#left-navbar {
  position: fixed;
  left: -10.5em;
  font-size: 1.4em;
  line-height: 1.4em;
  display: flex;
  flex-direction: column;
  width: 11.8em;
  justify-content: space-around;
}

#left-navbar > a {
  text-decoration: none;
  transition: 0.4s;
  text-align: right;
  color: black;
  background-color: cadetblue;
  width: 11.8em;
  height: 100%;
  padding-top: 0.7em;
  padding-bottom: .7em;
  padding-right: .8em;
}

#left-navbar a:hover {
  color: aliceblue;
  align-self: flex-start;
  margin-left: 7em;
  border-radius: 0 25px 25px 0;
}

#about-container {
  margin-left: 7em;
}

#sequential-nav-container {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  margin-top: 2em;
  margin-bottom: 2em;
}

/* #back, #next {
  background-color: cadetblue;
  font-size: 1em;
  border: 2px solid var(--dark-color);
  font-weight: bold;
  color: var(--light-color);
  text-decoration: none;
} */

/* #back {
  padding: 1em 1em 1em 1.5em;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
} */

/* #next {
  padding: 1em 1em 1em 1.5em;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
} */

tbody > tr {
  background-color: aliceblue;
}

.white-background {
  background-color: var(--light-color);
}

#back, #next {
  background-color: cadetblue;
  font-size: 1.2em;
  color: var(--dark-color);
  text-decoration: none;
  padding: .7em;
  width: 7em;
  text-align: center;
}

#back {
  border-top-left-radius: 8%;
  border-bottom-left-radius: 8%;
}

#next {
  border-top-right-radius: 8%;
  border-bottom-right-radius: 8%;
  /* text-align: right; */
}

/* #sequential-nav-filler {
  width: 2.8em;
} */

#back:hover, #next:hover {
  cursor: pointer;
  background-color: #7fbec0;
}

#copyright {
  position: fixed;
  bottom: 0%;
  background-color: var(--light-color);
  font-size: 14px;
}

/* MEDIA QUERIES */

@media screen and (min-width: 1300px) {
  #left-navbar {
    position: fixed;
    left: -3em;
    font-size: 1.4em;
    line-height: 1.4em;
    display: flex;
    flex-direction: column;
    width: 11.8em;
    justify-content: space-around;
  }

  #left-navbar > a {
    text-decoration: none;
    transition: none;
    text-align: right;
    color: black;
    background-color: cadetblue;
    width: 11.8em;
    height: 100%;
    padding-top: 0.7em;
    padding-bottom: .7em;
    padding-right: .8em;
    border-radius: 0 25px 25px 0;
  }

  #left-navbar a:hover {
    color: aliceblue;
    align-self: flex-start;
    margin-left: 0em;
  }
}