body {
  background-color: black;
  margin: 0;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.topnav {
  background-color: #333;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#video-container, #sheets-container, #rt-container, #aul-container {
  display: contents;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.dropdown {
  float: left;
}
.dropbtn {
  width: 100%;
}

.topnav-button {
  font-size: 1.2rem;
  border: solid black 1px;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: darkorange;
  font-family: inherit;
  display: flex;
  font-weight: bold;
  margin-right: 5%;
}
.topnav-button.selected {
  background-color: rgb(132, 209, 17);
}

.dropdown .dropbtn {
  font-size: 1.2rem;
  border: solid black 1px;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: darkorange;
  font-family: inherit;
  display: flex;
  font-weight: bold;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: darkslategrey;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  flex-direction: column;
  width: inherit;
}

.dropdown-content a {
  float: none;
  color: gold;
  padding: 12px 16px;
  text-decoration: none;
  text-align: left;
  font-weight: bold;
  display: flex;
  flex-direction: row;
}
.arrow-svg {
  margin-left: auto;
}

.month-dropdown.current .dropbtn {
  background-color: rgb(180, 99, 0);
  color: black;
}

.dropdown-content .current {
  background-color: rgb(9, 61, 9);
}

.month-dropdown.current .dropdown-content {
  display: block;
}
#site-name, #site-name * {
  font-size: 2rem;
  display: block;
  color: gold;
  width: min-content;
  font-weight: bold;
}
#site-name {
  margin: auto;
}
.month-dropdown {
  margin-left: 5%;
  width: 15%;
}

.calendar-days {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #333;
  padding: 20px;
  display: none;
}

.calendar-days ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 5px;
}

.calendar-days li {
  background-color: darkslategrey;
  color: gold;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  font-weight: bold;
  border: solid goldenrod 1px;
}

.calendar-days li.selected {
  background-color: lightgreen;
  color: black;
}


.main-content {
  color: darkorange;
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.main-content h2, .main-content h1, .tooltip-container h2 {
  text-align: center;
  margin-top: 3%;
}

.main-container, .tooltip-container  {
  display: flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  width: 90%;
}
.months-menu {
  display: flex;
}

.daily-stats {
  color: crimson;
  display: none;
}

.monthly-stats {
  color: crimson;
  display: none;
}

.ridely-stats {
  color: crimson;
  display: block;
}
