
body {
    font-family: 'Arial', sans-serif;
    margin: 40px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-bottom: 2px dotted #003d82;
    color: #003d82;
    font-weight: 600;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
    bottom: 125%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
    line-height: 1.5;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tipLeft{
    left: 50%;
}
.tipCenter{
    left: -200%;
}
.tipRight{
    right: 50%;
}

#tipWrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}