.training-options a {
    position: relative;
}

.training-options a[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%; /* Position above the link */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px; /* Increase font size */
    font-weight: bold; /* Make text bold */
    white-space: nowrap;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s;
}

.training-options a[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%; /* Position the arrow */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
    z-index: 1000;
}