body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 65px;
    font-size: 16px;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.menu a {
    text-decoration: none;
    color: black;
    position: relative;
}

.menu .separator {
    color: gray;
    font-size: 18px;
}

.menu a .tooltip-text {
    visibility: hidden;
    opacity: 0;
    background-color: black;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    position: absolute;
    bottom: 30px; /* Position the tooltip above the link */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.menu a .tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%; /* Arrow below the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.menu a:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
