/* Dropdown Button */
.dropbtn {
  background-color: #686868;
  color: #f8f8f8;
  padding: 16px;
  font-size: 20px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 300px;
  font-size: 20px;
}

/* Links inside the dropdown */
.dropdown-content a {
  background-color: #bebebe;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #686868;}

/* Properties for table background... */
tr {
  background-color: rgba(220, 220, 220, 0.7);
}