* {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3.legend {
  padding: 10px;
}

.legend span {
  cursor: pointer;
}

ul.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: black;
}

ul.nav li {
  float: left;
}

sup a,
sup a:visited {
  color: #007aca;
  font-size: x-large;
  text-decoration: none;
}

ul.nav li a {
  text-decoration: none;
  display: block;
  background: black;
  color: white;
  border: 2px solid black;
  padding: 10px;
}

ul.nav li a:hover {
  transition: 0.5s;
  background: grey;
  border: 2px solid grey;
}

.unfinished {
  color: orange;
}

.abandoned {
  color: red;
}

.unwatched {
  color: darkslategray;
}

.rewatched {
  color: blue !important;
  cursor: pointer;
}

.watched {
  color: purple;
}

.saw {
  color: green;
}

#movies {
  display: none;
}

#tv {
  display: block;
}

#search {
  float: right;
}

.season_div {
  display: inline;
}

/* SC: https://www.w3schools.com/css/css_tooltip.asp */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip > span {
  font-weight: bold;
}

.watched > .tooltiptext {
  cursor: pointer;
}
/* EC */
