* {
        margin: 0;
        padding: 0;
}

#species-list {
    max-width: 845px;
    z-index: 1000;
    position: relative;
    top: 0;
    left: 0;
    color: #FFF;
    font-family: Times New Roman;
    font-size: 14px;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    pointer-events: none;
}

.species-label {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.3);
    padding: 5px;
    margin: 3px;
    cursor: pointer;
    transition-property: opacity;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    pointer-events: all;
}

#species-list:hover .species-label:not(:hover) {
    opacity: 0 !important;
}

.species-label:hover {
    background-color: rgba(0,0,0,0.9);
}

.canvas {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease;
}

.highlighted {
    opacity: 1;
    z-index: 1000;
}

.muted {
    opacity: 0.06;
}

html, body {
    height: 100%;
}

#container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

#child {
  width: 845px;
  height: 845px;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* display: block; */
}

#info {
    opacity: 0;
    font-size: 10px;
    z-index: 1003;
    color: white;
    pointer-events: none;
    position: absolute;
    bottom: 3px;
    right: 3px;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    padding: 2px;
    transition-property: opacity;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

#info td {
    padding: 4px;
}

#info td:first-child {
    /* border-right: 1px solid white; */
}

#info-effect {
    max-width: 140px;
}
