.sidebar-custom-tooltip {
    position: fixed;
    display: none;
    padding: 8px 12px;
    background-color: #333;
    color: white;
    border-radius: 6px;
    z-index: 10001;
    font-size: 0.9rem;
    pointer-events: none;
}

.custom-tooltip {
    position: absolute;
    display: none;
    padding: 8px 12px;
    background-color: #333;
    color: #88d8b0;
    border-radius: 6px;
    z-index: 10001;
    font-size: 0.9rem;
    text-align: left;
    max-width: 300px;
    white-space: normal;
    word-wrap: break-word;
}

.custom-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #212529;
}

.link-context-menu {
    position: fixed;
    display: none;
    z-index: 10002;
    min-width: 132px;
    padding: 6px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.link-context-menu button {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
}

.link-context-menu button:hover {
    background: var(--sidebar-link-hover-bg);
    color: var(--sidebar-link-hover);
}
