.treeBio {
    opacity: 0;
    position: absolute;
    display: inline-block;
    padding: 5px;
    border: solid;
    border-width: 2px;
    border-radius: 5px;
    background-color: white;
}
.treeBio ul {
    margin-bottom: 0;
}
.tooltipClose {
    position: relative;
    float: right;
    padding-left: 5px;
}
.searchEntity {
    text-align: center;
}
.link {
    padding-left: 10px;
    padding-right:10px;
}
#header {
    overflow: visible;
}
ul.submenu {
    background: var(--breadcrumbs-bg);
}
ul.menu li {
    list-style-type: none;
}
ul.menu:not(.download) li a {
    color: var(--header-link-color);
}
ul.menu.download li a:hover, ul.menu.download li a:focus {
    color: var(--link-fg)
}
li a:hover, li a:focus {
    text-decoration: underline;
    color: var(--header-link-color);
    content: none;
}
.button-group.stacked .button {
    padding:10px;
}
#treeSVG {
    border-style: solid;
    border-width: 0.5px;
    padding-right: 10px;
}
.stacked.button-group {
    max-width: 1000px; 
}
.adminMenu {
    text-align:center;
}
.adminMenu a {
    padding:15px;
}
.errorMessage {
    text-align: center;
    font-size: large;
}

div.accordion.search a {
    text-align: center;
}

.search h6 {
    text-align: center;
    padding-top: 5px;
}

.searchContainer {
  position: relative;
  width: 300px;
}

.searchBox {
  width: 100%;
  padding: 8px;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

.selectedId {
    display: none;
}

.suggestions {
  list-style-type: none;
  padding: 0;
  margin-top: 4px;
  max-height: 150px;
  overflow-y: auto;
  background: white;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.suggestions li {
  padding: 8px;
  cursor: pointer;
}

.suggestions li:hover {
  background-color: #eee;
}

.tag {
  display: flex;
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 14px;
  margin-bottom: 5px;
}

.tag button {
  background: none;
  border: none;
  font-size: 18px;
  margin-left: 8px;
  cursor: pointer;
  line-height: 1;
}

.hidden {
  display: none;
}

.timeline-container {
  margin-bottom: 20px;
  padding: 10px;
}

.timeline-container label {
  font-weight: bold;
}

.timeline-container button {
  transition: color 0.2s;
}

.timeline-container button:hover {
  color: #000 !important;
}

.timeline-container #timelinePlayPauseBtn:hover {
  opacity: 0.9;
}

.timeline-container #timelineSpeed {
  cursor: pointer;
}

.timeline-container input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
}

.timeline-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.timeline-container input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
  border: none;
}