#tooltip {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(50, 50, 50);
    max-width: 512px;
    padding: 5px;
    border-radius: 5px;
    z-index: 10000;
}

#tooltip::before {
    content: "";
    position: absolute;
    top: 0.125em;
    right: -0.125em;
    bottom: 0.125em;
    left: -0.125em;
}

#tooltip::after {
    content: "";
    position: absolute;
    top: 0.125em;
    right: 0;
    bottom: 0.125em;
    left: 0;
}

#tooltipTitle {
    font-size: larger;
    font-weight: bold;
}

.tooltip {
    cursor: pointer
}