/* Tooltip container */
.button-tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.button-tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 12px;
  border-radius: 0px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  top: 110%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.button-tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.button-tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.refresh-button{
	background-color: white;
	border: none;
	float: left;
    width: 40px;
    height: 40px;
	color: black;
}