.nlfw-btn {
    --this-color: #fff;
    --this-bg: linear-gradient(135deg, #f59e0b, #ef4444);
    background: var(--this-bg) !important;
    color: var(--this-color) !important;
    animation: nlfw-pulse 2s ease-in-out infinite;
}

@keyframes nlfw-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

.nlfw-panel {
    width: 220px;
    padding: 8px 0;
}

.nlfw-panel__title {
    padding: 6px 14px 10px;
    font-size: 12px;
    color: #909399;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

.nlfw-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    color: #303133;
    text-decoration: none;
    transition: background 0.15s;
    gap: 8px;
}

.nlfw-item:hover {
    background: #f5f7fa;
    color: #409eff;
}

.nlfw-item__name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nlfw-item__tag {
    flex-shrink: 0;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 10px;
    background: #f0f2f5;
    color: #909399;
}
