html, body {
    padding: 5px;
    font-family: calibri, arial;
}

#data-table {
    font-family: calibri, arial;
    width: 100%;
}

#data-table thead td {
    background-color: #8CCCF1;
    background-color: #05658b;
    color: white;
}

#data-table td {
    border: 1px solid #466E85;
  //  width: 136px;
    padding: 2px;
}

#data-table td br {
display:none;
}

#data-table td div:first-child {
display:inline;
}

#data td a {
a[target='_blank']::after {content: '\29C9';}
}

.link-icon {
	display:inline;
	cursor:pointer;
	font-weight:bold;
	font-size:18px;
	text-decoration: none;
}

#data-table textarea {
    vertical-align: middle; 
    font-size: 16px;
}

select {
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

/* Style The Dropdown Button */
.dropbtn {
  z-index: 50;
  color: black;
  padding: 1px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* 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: #f9f9f9;
  min-width: 300px;
  width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  padding: 5px;
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #BBBBBB;
}


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #AAA;
  color: #000;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

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


.container {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
  transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
  transform: rotate(45deg) translate(-8px, -8px) ;
}
