/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #1F9EBB;
  font-weight: bold;
  font-size: 14px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;

  font-weight: bold;
  font-size: 14px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  color: black;
}

/* Style for program tables (showing abstracts) */
tbody .program-table-row:hover {
  background-color: #E8F9FF;
  color: #00809D;
  font-weight: bold;
  cursor: pointer;
}

tbody .program-table-row:hover .abstract {
  color: black;
  background-color: white;
  font-weight: normal;
}

.abstract {
  width: 100%;
  text-align: left;
  display: none;
  border: 0;
  padding: 0;
  background-color: #efefef;
  margin: 5px 10px 15px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 15px;
  color: black;
}