/* Dropdown Button */
.dropbtn {
    /* background-color: #04AA6D; */
    /* color: white; */
    padding: 16px;
    font-size: 16px;
    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: 160px;
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;
}

/* Width for the dropdown */
.dropdown-item a {
width: 100%;
  /* color: black; */
/* padding: 12px 16px; */
/* text-decoration: none; */
/* display: block; */
}

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

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

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

/* Horizontal Scroll */
div.myscroll {
  /* background-color: #333; */
  margin: 4px, 4px;
  padding: 4px;
  /* background-color: #08c708; */
  /* width: 300px; */
  /* overflow: auto; */
  overflow-x: scroll;
  overflow-y: scroll;
  white-space: nowrap;
  display: block;
}


/* Align Material icon with text */
.inline-icon {
  vertical-align: bottom;
  font-size: 18px !important;
}

.material-icons.md-12 {
  font-size: 12px !important;
  height: 12px !important;
  width: 12px !important;
}
.material-icons.md-18 {
  font-size: 18px !important;
  height: 18px !important;
  width: 18px !important;
}
.material-icons.md-24 {
  font-size: 24px !important;
  height: 24px !important;
  width: 24px !important;
}
.material-icons.md-36 {
  font-size: 36px !important;
  height: 36px !important;
  width: 36px !important;
}
.material-icons.md-48 {
  font-size: 48px !important;
  height: 48px !important;
  width: 48px !important;
}

.material-icons.lime { color: lime; }
.material-icons.orange { color: orange; }


.social-button {
  /* align-items: left; */
  width: 300px;
  height: 30px;
  margin: 10px auto 10px;
  display: table;
  font-size: 18px;
  padding: 10px 30px;
  /* background-color: #4caf50; */
  /* border: 1px solid ; */
  border-color: black;
  color: black;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}
.social-button:hover {
  opacity: 0.8;
}


table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}
th {
  background-color: lightblue;
  color: black;
}