/* Styling for the top bar containing */
/* a spacer, the main <h1> title and above */
/* logout dropdown button. */

.dropbtn {
  background-color: #04AA6D;
  color: white;
  /* padding: 16px; */
  font-size: 24px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding: 16px;
  font-size: 16px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  height:25px;
  display: hidden;
}

.dropdown-content a:hover {text-align: left;
background-color: #ddd;}

.dropdown:hover .dropdown-content {text-align: left;
display: block;}

.dropdown:hover .dropbtn {text-align: left;
background-color: #3e8e41;}
.column {
	float: left;
	/* width: 33.33%; */
	/* border:1px solid #DDDDDD; */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}