.highlight-dot {
    font-size: 1.5em;
    font-weight: bold;
}
.popup-title {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
}
.popup-content {
    text-align: left;
    margin-top: 5px;
}
.popup-links {
    text-align: center;
    font-style: oblique;
}
.popup-tags {
    text-align: center;
    margin-top: 10px;
}
.popup-tags span {
    border: 1px solid #ccc;
    padding: 2px 5px;
    margin-right: 5px;
}
/* Style for the clickable element */
.clickable {
    cursor: pointer;
    text: blue;
    text-decoration: underline;
}

/* Hidden by default */
.clipboardPopup {
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px;
    position: absolute;
    top: 50px; /* Adjust based on element's position */
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    /*opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;*/
}

.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
