/* _static/custom-tooltip.css */

/* 基础样式重置 - 所有 internal 链接默认无下划线 */
a.reference.internal {
    border-bottom: none;
    cursor: pointer;
    text-decoration: none;
}

/* 只有包含术语 span 且有 title 的链接才显示下划线 */
a.reference.internal:has(span.xref.std.std-term)[title] {
    border-bottom: 1px dashed #3498db;
    cursor: help;
    text-decoration: none;
}

/* 悬停效果 */
a.reference.internal:has(span.xref.std.std-term)[title]:hover {
    border-bottom-color: #e74c3c;
}

/* 确保侧边栏的术语链接也不会有下划线（如果侧边栏也有术语） */
.sphinxsidebar a.reference.internal:has(span.xref.std.std-term)[title] {
    border-bottom: none;  /* 侧边栏中的术语也不显示下划线 */
    cursor: pointer;
}

