/**
 * 标签内链插件样式
 */

.tag-internal-link {
    color: #e74c3c !important;
    border-bottom: 1px dashed #e74c3c !important;
    text-decoration: none !important;
    font-weight: 500;
    padding: 0 2px;
    transition: all 0.3s ease;
    background-color: rgba(231, 76, 60, 0.05);
    border-radius: 2px;
}

.tag-internal-link:hover {
    color: #c0392b !important;
    border-bottom: 1px solid #c0392b !important;
    background-color: rgba(231, 76, 60, 0.1);
    text-decoration: none !important;
}