#force-graph-container {
    display: grid;
    grid-template-columns: 27% 33% 40%;
    row-gap: 2rem;
    justify-items: center;
    align-items: end;
}

#force-graph-container figure {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#force-graph-container figcaption {
    font-size: 0.68rem;
    margin: 0 auto 5em auto;
    font-weight: 500;
    background-color: var(--white);
    padding: 1em;
}

#force-graph-container div {
    width: 100%;
    padding: 0.5em 1em;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

#force-graph-container h5 {
    margin: 0 auto 0.3em auto;
}

#force-graph-container img {
    width: 100%;
    height: 100%;
}

#force-graph-container p {
    display: inline-flex;
    font-weight: 200;
    margin: 0;
    font-variant-numeric: lining-nums;
}

.bar-chart p:first-of-type {
    font-weight: 500 !important;
}

.bar-chart:first-of-type {
    background-color: hsla(95,27%,55%,0.2);
}

.bar-chart:nth-of-type(2) {
    background-color: hsla(95,27%,55%,0.35);
}

.bar-chart:nth-of-type(3) {
    background-color: hsla(95,27%,55%,0.6);
}

.force-graph-tooltip {
    position: absolute;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid var(--off-white);
    border-radius: 3px;
    font-size: 0.7rem;
    pointer-events: none;
  }