body {
  margin: 0;
}

.navbar {
  box-sizing: border-box;
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
  color:white;
}

.navbar a {
  box-sizing: border-box;
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.tickerdisp {
  float: left;
  padding: 14px 16px;
}

.dropdown .dropbtn {
  box-sizing: border-box;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #3d2b99;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ccc;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1001;
}

.menuimg {
	width: auto;
	height: 50px;
	float: left;
	margin-left: 5px;
	margin-right: 5px;
}
.dropdown-content .header {
  background: #3d2b99;
  padding: 16px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  box-sizing: border-box;
  float: left;
  width: 20%;
  padding: 10px;
  background-color: #ccc;
  height: 350px;
  overflow: scroll;
  scrollbar-color: black #ccc;
}

.column a {

  box-sizing: border-box;
  float: none;
  color: black;
  padding: 5px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.menuplaybutton{
	box-sizing: border-box;
	font-size: 16px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font: inherit;
	margin: 0;
}

.menuplaybutton .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: white;
  color: black;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  margin-top: -20px;
}


.menuplaybutton .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%; /* To the left of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent white transparent transparent;
}
.menuplaybutton:hover .tooltiptext {
  visibility: visible;
}


